运行应用程序时,我在gradle控制台中收到错误
* What went wrong:
Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.0.0-alpha1) from [com.android.support:design:26.0.0-alpha1] AndroidManifest.xml:27:9-38
is also present at [com.android.support:cardview-v7:25.3.1] AndroidManifest.xml:24:9-31 value=(25.3.1).
Suggestion: add 'tools:replace="android:value
"' to <meta-data> element at AndroidManifest.xml:25:5-27:41 to override.
有人可以为我提供适当的解决方法吗?
答案 0 :(得分:0)
您使用的是不同版本的Android支持库:
使用如下相同的版本
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:design:25.3.1'