【问题标题】:Error: Cause: compileSdkVersion is not specified after install plugin错误:原因:安装插件后未指定compileSdkVersion
【发布时间】:2019-06-25 09:48:24
【问题描述】:

我尝试安装此plugin。首先我得到了

Can not add task 'clean' as a task with that name already exists.


然后我通过评论这行来修复它

//
//task clean(type: Delete) {
//    delete rootProject.buildDir
//}

build.gradle (Project:XXX)

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'
        classpath 'com.github.stephanenicolas.ormgap:ormgap-plugin:1.0.13'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

apply plugin: 'com.android.application'
apply plugin: 'ormgap'

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
    }
}
//
//task clean(type: Delete) {
//    delete rootProject.buildDir
//}



然后我得到错误

Cause: compileSdkVersion is not specified. 甚至认为它已经在 build.gradle 文件中指定了

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
        applicationId "www.pro_cs_is.com"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:animated-vector-drawable:27.1.1'
    implementation 'com.android.support:exifinterface:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation ('com.android.support.test.espresso:espresso-core:3.0.2',{
    exclude group: 'com.google.code.findbugs'})
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    implementation 'com.github.bumptech.glide:glide:4.7.1'
    implementation 'org.jsoup:jsoup:1.11.3'
    implementation 'com.google.apis:google-api-services-blogger:v3-rev57-1.23.0'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.j256.ormlite:ormlite-android:5.1'
    implementation 'com.j256.ormlite:ormlite-core:5.1'
}


【问题讨论】:

  • 不要应用根项目build.gradle中的插件...

标签: android android-studio android-gradle-plugin build.gradle gradle-plugin


【解决方案1】:
  • 应用插件
  • 仅限 build.gradle(module:app)
  • 如下

    apply plugin: 'com.android.application'
    apply plugin: 'ormgap'
    
    android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
    applicationId "www.pro_cs_is.com"
    minSdkVersion 15
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-   rules.pro'
       }
       }
       }
    
      dependencies {
      implementation fileTree(include: ['*.jar'], dir: 'libs')
      implementation 'com.android.support:appcompat-v7:27.1.1'
      implementation 'com.android.support:animated-vector-drawable:27.1.1'
      implementation 'com.android.support:exifinterface:27.1.1'
      implementation 'com.android.support:design:27.1.1'
      implementation 'com.android.support.constraint:constraint-layout:1.1.1'
      implementation 'com.android.support:cardview-v7:27.1.1'
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'com.android.support.test:runner:1.0.2'
      androidTestImplementation ('com.android.support.test.espresso:espresso-core:3.0.2',{
      exclude group: 'com.google.code.findbugs'})
      implementation 'com.squareup.retrofit2:retrofit:2.4.0'
      implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
      implementation 'com.github.bumptech.glide:glide:4.7.1'
      implementation 'org.jsoup:jsoup:1.11.3'
      implementation 'com.google.apis:google-api-services-blogger:v3-rev57-1.23.0'
      implementation 'com.squareup.picasso:picasso:2.71828'
      implementation 'com.j256.ormlite:ormlite-android:5.1'
      implementation 'com.j256.ormlite:ormlite-core:5.1'
     }
    
  • 并将其从 build.gradle(project:XXX) 中删除

  • 我希望这会有所帮助

【讨论】:

    猜你喜欢
    • 2018-12-29
    • 1970-01-01
    • 1970-01-01
    • 2019-03-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-02-08
    相关资源
    最近更新 更多