2015-06-09 148 views
1

我导入了一个使用roboelectric的项目,但似乎build.gradle文件是错误的,我不知道如何解决它。我检查我的gradle有2.2.1,但我还没有想通了这个问题尚未...我的日志:Gradle项目同步失败 - 未找到Gradle DSL方法:android()

Executing tasks: [:] 

Configuration on demand is an incubating feature. 

FAILURE: Build failed with an exception. 

* Where: 
Build file '/Users/dev1/Desktop/DESARROLLO/AndroidTestExample-master/Starter/build.gradle' line: 3 

* What went wrong: 
A problem occurred evaluating root project 'Starter'. 
> Could not find method android() for arguments [[email protected]] on root project 'Starter'. 

* Try: 
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. 

BUILD FAILED 

Total time: 0.153 secs 

而且的build.gradle:

buildscript { 
repositories { 
    mavenCentral() 
} 
dependencies { 
    classpath 'com.android.tools.build:gradle:1.2.3' 
} 
} 
apply plugin: 'android' 
sourceSets { 
    unitTest { 
     java.srcDir file('src/test/java') 
     resources.srcDir file('src/test/res') 
     } 
} 

configurations { 
unitTestCompile.extendsFrom runtime 
unitTestRuntime.extendsFrom unitTestCompile 
} 

dependencies { 
repositories { 
    mavenCentral() 
} 
    unitTestCompile files("$project.buildDir/classes/release") 
unitTestCompile 'junit:junit:4.10' 
unitTestCompile 'org.robolectric:robolectric:2.1.+' 
unitTestCompile 'com.google.android:android:4.0.1.2' 
} 
task unitTest(type:Test, dependsOn: assemble) { 
    testClassesDir = project.sourceSets.unitTest.output.classesDir 
    classpath = project.sourceSets.unitTest.runtimeClasspath 
} 
check.dependsOn unitTest 

android { 
compileSdkVersion 19 
buildToolsVersion "19.0.0" 

}

回答

0

尝试将您的buildToolsVersion设置为21.1.1而不是19.0.0,这可能是您的proplem的原因。

尝试更新android studio,如果它不是。

希望这会有所帮助。

+0

谢谢,但它仍然说:无法找到方法android()的参数[build_43aogzm0wm94eieabvjhdztqe $ _run_closure1 @ 19a6fd40]在根项目'Starter'上。 – Billyjoker

相关问题