当我添加依赖项时:
compile 'net.bytebuddy:byte-buddy-android:0.7.8'
在我的应用中,我收到此错误:
Conflict with dependency 'net.bytebuddy:byte-buddy'. Resolved versions for app (0.7.8) and test app (0.6.14) differ. See http://g.co/androidstudio/app-test-app-conflict for details.
我访问了http://g.co/androidstudio/app-test-app-conflict,并说:
如果主APK和测试APK使用相同的格式,Gradle构建将失败 库(例如番石榴),但版本不同。[...]进行构建 成功,只需确保两个APK使用相同的版本
但我不知道这意味着什么。
你能帮帮我吗?感谢。的build.gradle
...
buildTypes {
all {
//just build some config fields
}
demo.initWith(buildTypes.debug)
demo {
//just build some config fields
}
devel.initWith(buildTypes.debug)
devel {
//just build some config fields
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.gg
//just build some config fields
}
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
...
答案 0 :(得分:6)
您可以使用以下方法强制测试中的版本:
androidTestCompile 'net.bytebuddy:byte-buddy-android:0.7.8'
答案 1 :(得分:1)
您可以通过将此项添加到gradle文件
来强制使用该版本而不添加无关的依赖项configurations.all {
resolutionStrategy {
force 'net.bytebuddy:byte-buddy-android:0.7.8'
}
}