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.requested
if (requested.group ==
'com.android.support') {
if (!requested.name.startsWith(
"multidex")) { details.useVersion
'25.3.0' } } } }