清单问题

时间:2017-09-11 23:01:48

标签: android android-manifest android-cardview

我的Manifest错误存在一个小问题。我有一个add_contact类,我在我的布局中添加了一个CardView。我想让所有api高于14的add_contact和show_contact ...我在下面写的debuger错误:plz帮助我。

Error: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.

2 个答案:

答案 0 :(得分:0)

您可以发布build.gradle的依赖关系吗?很难说没有更多信息,但看起来你的所有支持库都没有使用相同的版本。错误是说你的CardView有26.0.0-alpha1和25.3.1。截至目前,26.0.2是最新版本。我建议将其用于所有支持依赖项。

答案 1 :(得分:0)

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
testCompile 'junit:junit:4.12'
compile 'com.android.support:cardview-v7:25.3.1'

}