本文主要是介绍Attribute meta-data#android.support.VERSION@value value=(25.3.1) from [com.android.support:appcompat,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题:
Attribute meta-data#android.support.VERSION@value value=(25.3.1) from [com.android.support:appcompat-v7:25.3.1] AndroidManifest.xml:27:9-31 is also present at
原因:Manifest中的版本和library中引用的recyclerview版本不一样,需要在gradle中将其强制转换成相同的版本。
解决办法:
在Gradle(Module:APP)中最后面加上
configurations.all {resolutionStrategy.eachDependency { DependencyResolveDetails details ->def requested = details.requestedif (requested.group == 'com.android.support') {if (!requested.name.startsWith("multidex")) {details.useVersion '25.3.0'}}}
}
这篇关于Attribute meta-data#android.support.VERSION@value value=(25.3.1) from [com.android.support:appcompat的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!