2014-11-05 7 views
0

У меня есть неподдерживаемый метод Gradle instrumentTestCompile при включении эспрессо в моем Android проекта gradle.build на Android студии, следуя инструкциям Google:
https://code.google.com/p/android-test-kit/wiki/Espresso#Espresso_Setup_Instructions.неподдерживаемый Gradle метод instrumentTestCompile

gradle.build:

dependencies { 
    instrumentTestCompile files('libs/espresso-1.1.jar', 
      'libs/testrunner-1.1.jar', 
      'libs/testrunner-runtime-1.1.jar') 

    instrumentTestCompile 'com.google.guava:guava:14.0.1', 
      'com.squareup.dagger:dagger:1.1.0', 
      'org.hamcrest:hamcrest-core:1.1', 
      'org.hamcrest:hamcrest-integration:1.1', 
      'org.hamcrest:hamcrest-library:1.1' 
} 

Полная ошибка:

Build script error, unsupported Gradle DSL method found: ‘instrumentTestCompile()’! 
Possible causes could be: 
– you are using Gradle version where the method is absent 
– you didn’t apply Gradle plugin which provides the method 
– or there is a mistake in a build script 

ответ

5

Я нашел ответ здесь:
http://android.amberfog.com/?p=894

instrumentTestCompile() был переименован в androidTestCompile() в последней версии плагина Gradle ,

+0

Для целей документации, поскольку ответ не найден на SO. –

+0

В чем разница между этим и testCompile? –

+0

Ответ здесь: http://stackoverflow.com/questions/29021331/confused-about-testcompile-and-androidtestcompile-in-android-gradle –