构建项目时出现以下错误:
错误:(2,0)已经创建了Android任务。 调用android.applicationVariants时会发生这种情况, android.libraryVariants或android.testVariants。 一旦调用了这些方法,就不可能 继续配置模型。
Root build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
apply plugin: 'android'
android {
compileSdkVersion 'Google Inc.:Google APIs:19'
buildToolsVersion '19.1.0'
defaultConfig {
versionCode 5
versionName '5'
targetSdkVersion 19
minSdkVersion 10
applicationId 'tsp.movil'
}
}
dependencies {
compile 'com.google.android.gms:play-services:7.0.0'
compile 'com.android.support:support-v4:22.1.1'
}
App build.gradle:
android {
compileSdkVersion 'Google Inc.:Google APIs:19'
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "tsp.movil"
minSdkVersion 10
targetSdkVersion 19
versionCode 5
versionName '5'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
}
}
dependencies {
compile 'com.android.support:support-v4:19.1.0'
compile 'com.google.android.gms:play-services:+'
compile files('libs/zbar.jar')
}
答案 0 :(得分:3)
您的顶级 build.gradle 文件应该只包含项目所有模块的通用配置。
进行以下更改:
Root build.gradle 文件应该只有这段代码
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}
allprojects{
repositories {
jcenter()
}
}
答案 1 :(得分:0)
看看这个: How to define common android properties for all modules using gradle 第3条评论说已经创建了Android任务。调用android.applicationVariants,android.libraryVariants或android.testVariants时会发生这种情况。调用这些方法后,无法继续配置模型。
答案 2 :(得分:0)
我也遇到了类似的问题,并带有相同的错误消息。我遇到的问题是,我已经在包中创建了一个模块,然后在(MacOS)Finder中手动将其删除。
问题是我忘记也从include ::myModule
文件中删除了settings.gradle
行。