gpt4 book ai didi

android - Gradle:应用程序和测试应用程序的已解决版本不同

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:23 24 4
gpt4 key购买 nike

当我添加依赖时:

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它说:

Gradle build will fail if the main APK and the test APK use the same library (e.g. Guava) but in different versions.[...] To make the build succeed, just make sure both APKs use the same version

但是我不知道这是什么意思。

你能帮帮我吗?谢谢。

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
}

...

最佳答案

您可以使用以下方法在测试中强制使用该版本:

androidTestCompile 'net.bytebuddy:byte-buddy-android:0.7.8'

关于android - Gradle:应用程序和测试应用程序的已解决版本不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34650509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com