我在MainProject / Project / src / test中进行了测试。我正在使用Jake Wharton的gradle-android-test-plugin。每当我使用testCompile指定依赖项时,它都不会在IDE中自动完成。但它确实可以编译。
我的build.gradle看起来像这样:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
classpath 'com.squareup.gradle:gradle-android-test-plugin:0.9.1-SNAPSHOT'
}
}
apply plugin: 'android'
apply plugin: 'android-test'
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.11'
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
}
但每当我尝试编码时,都会这样做:
这很烦人,降低了我的工作效率。有关如何解决此问题的任何建议?感谢。
答案 0 :(得分:7)
我遇到了同样的问题。我的临时解决方案是在instrumentTestCompile中重复testCompile依赖项。
这样,Android Studio可识别instrumentTestCompile依赖项并开始自动完成。