buildTypes android studio错误

时间:2015-03-21 18:40:51

标签: android android-studio gradle

我在项目gradle文件中收到此错误:

  

' buildTypes'不能应用于'(groovy.lang.Closure<   com.android.build.gradle.internal.dsl.BuildType>)'

我目前正在使用Android Studio 1.1.0,compileSdkVersion 22,buildToolsVersion 22.0.0和targetSdkVersion 22.使用compileSdkVersion 21似乎解决了这个问题。有什么提示吗?

编辑:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.0"

    defaultConfig {
        applicationId "com.xxxx.yyyy"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.google.android.gms:play-services-location:7.0.0'
}

1 个答案:

答案 0 :(得分:0)

我开始了一个新的项目,我看到它运行良好,所以我只是复制了build.gradle文件。实际上唯一的区别是缺少compileOptions部分。我删除了部分,同步gradle,再次插入部分,再次同步gradle,现在它可以正常工作!