每当我尝试运行我的项目时,清理它或构建它我会得到一个gradle错误:
Error:FAILURE: Build failed with an exception.
* What went wrong:
Task 'compile' is ambiguous in root project 'FifiFun2'. Candidates are: 'compileDebugAidl', 'compileDebugAndroidTestAidl', 'compileDebugAndroidTestJavaWithJavac', 'compileDebugAndroidTestNdk', 'compileDebugAndroidTestRenderscript', 'compileDebugAndroidTestSources', 'compileDebugJavaWithJavac', 'compileDebugNdk', 'compileDebugRenderscript', 'compileDebugSources', 'compileDebugUnitTestJavaWithJavac', 'compileDebugUnitTestSources', 'compileLint', 'compileReleaseAidl', 'compileReleaseJavaWithJavac', 'compileReleaseNdk', 'compileReleaseRenderscript', 'compileReleaseSources', 'compileReleaseUnitTestJavaWithJavac', 'compileReleaseUnitTestSources'.
* Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
我尝试使用上面的选项(stacktrace,info,debug)运行gradle任务,但没有任何帮助。
的gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
主gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.user_pc.myapplication"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
}
settings.gradle文件:
include ':app'
问题的屏幕截图:
答案 0 :(得分:0)
删除代码
task clean(type: Delete) {
delete rootProject.buildDir
}
从您的gradle文件,然后清理并重建您的项目。
答案 1 :(得分:0)
检查以下内容:
你能建立并运行另一个项目吗? (例如新的)。
尝试定义调试buildType并重新同步gradle然后构建。
检查您是否拥有良好的proyect结构,或者如果不这样做,请将其设置为gradle.build。
如果没有工作是出于想法,抱歉。
答案 2 :(得分:0)
问题是,你的gradlew文件位于项目的根目录中,并且你试图从项目的根目录运行一个模糊的任务编译,其中编译器不知道要运行的实际任务,这将导致到TaskSelectionException。您可以运行单个任务,即stackoverflow question will help you