添加房间依赖性会产生清单合并错误

时间:2017-10-20 12:17:23

标签: android android-gradle android-room

添加

compile "android.arch.persistence.room:runtime:1.0.0-rc1" 

到我的gradle文件,我到了下面。有任何线索如何解决这个问题?我尝试添加工具:replace =“android:value”但它崩溃了我的应用程序。

Error:Execution failed for task ':app:processStagingDebugManifest'.
> Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.0.2) from [com.android.support:design:26.0.2] AndroidManifest.xml:28:13-35
    is also present at [com.android.support:support-core-utils:26.1.0] AndroidManifest.xml:28:13-35 value=(26.1.0).
    Suggestion: add 'tools:replace="android:value"' to <meta-data> element at AndroidManifest.xml:26:9-28:38 to override.

2 个答案:

答案 0 :(得分:6)

只需使用支持库的 26.1.0 版本。

compile 'com.android.support:support-core-utils:26.1.0'
compile 'com.android.support:design:26.1.0'
//...

答案 1 :(得分:0)

我刚刚删除了有冲突的依赖项,例如:

implementation("android.arch.persistence.room:runtime:1.0.0-rc1") {
    exclude group: 'com.android.support', module: 'support-core-utils'
}

错误消失了。