在导入ListViewAnimation库时,我得到重建错误
Error:(7) A problem occurred evaluating project ':library'.
Run Code Online (Sandbox Code Playgroud)
无法在项目':library'上找到方法instrumentTestCompile()的参数[org.mockito:mockito-core:1.9.5,build_n73cqp2judtlhpna5h10rio8c $ _run_closure1_closure3 @ 20e75be5].
这是导入的模块build.gradle:
apply plugin: 'android-library'
dependencies {
compile 'com.nineoldandroids:library:2.4.0'
instrumentTestCompile ('org.mockito:mockito-core:1.9.5') { exclude group: 'org.hamcrest' }
instrumentTestCompile ('com.google.dexmaker:dexmaker-mockito:1.0') { exclude group: 'org.hamcrest' }
instrumentTestCompile ('junit:junit:4.11') { exclude group: 'org.hamcrest' }
instrumentTestCompile 'org.hamcrest:hamcrest-all:1.3'
}
android {
compileSdkVersion 19
buildToolsVersion '19.0.1'
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
instrumentTest.setRoot('tests')
instrumentTest {
java.srcDirs = ['tests/java']
}
}
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionName project.VERSION_NAME
versionCode Integer.parseInt(new Date().format('yyyyMMddHH'))
}
packagingOptions {
exclude 'LICENSE.txt'
}
}
apply from: '../maven_push.gradle'
Run Code Online (Sandbox Code Playgroud)
问题是什么 ?
ben*_*n75 10
在最近的android-gradle-plugin中,instrumentTest已经在androidTest中重命名
您必须在build.gradle中重命名:
| 归档时间: |
|
| 查看次数: |
4280 次 |
| 最近记录: |