解决编译失败 Attribute meta-data#android.support.VERSION@value value=(26.0

报错如下:

	Attribute meta-data#android.support.VERSION@value value=(26.0.0) from [com.android.support:design:26.0.0] AndroidManifest.xml:28:13-35
	is also present at [com.android.support:appcompat-v7:26.1.0] AndroidManifest.xml:28:13-35 value=(26.1.0).
	Suggestion: add 'tools:replace="android:value"' to  element at AndroidManifest.xml:26:9-28:38 to override.

问题原因:

你工程里面引入了support 版本是26.0,你依赖了别人的库,别人用的是26.1,那么,就会出现这种错误。

解决方法1:

在清单文件里面增加以下内容:

        

android:value 的值是你的项目里面使用的值,就可以了。

解决方法2:

在module 的build.gradle 最下面加上下面这段:

configurations.all {
    resolutionStrategy.eachDependency { DependencyResolveDetails details ->
        def requested = details.requested
        if (requested.group == 'com.android.support') {
            if (!requested.name.startsWith("multidex")) {
                details.useVersion '26.0.0'
            }
        }
    }
}

你可能感兴趣的:(Android)