添加材料设计支持后,清单合并失败并出现多个错误

时间:2018-09-29 09:02:54

标签: android manifest

我的应用程序之前运行良好,但是最近在android pie更新之后,我将targetSDKVersion更改为28,并添加了材料设计支持,并得到了此错误。

  

清单合并失败:属性application @ appComponentFactory   值=(android.support.v4.app.CoreComponentFactory)来自   [com.android.support:support-compat:28.0.0]   AndroidManifest.xml:22:18-91也位于   [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86   值=(androidx.core.app.CoreComponentFactory)。意见建议:添加   'tools:replace =“ android:appComponentFactory”'转换为元素   在AndroidManifest.xml:7:5-53:19进行覆盖。

我已经更新了所有库并尝试了它给我的所有建议,但仍然无法确定程序。下面是我添加的依赖项。

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:support-compat:28.0.0'
implementation 'com.android.support:mediarouter-v7:28.0.0'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation "com.android.support:support-core-utils:28.0.0"
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation group: 'com.android.support', name: 'customtabs', version: '28.0.0'
}

2 个答案:

答案 0 :(得分:5)

它说您的support依赖性与androidx.core依赖性冲突

android studio不能同时使用android x依赖项和先前的support依赖项。您应该只使用其中之一。

使用这些依赖项

implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'

使用此链接重构您的依赖关系 https://developer.android.com/topic/libraries/support-library/refactor

答案 1 :(得分:0)

我的错误已解决,我的假设是,为了使用材质设计,我们需要将android studio更新为3.2,因为在我使用3.1并将项目迁移到androidx之前。并添加这两行

android.useAndroidX=true
android.enableJetifier=true

在项目的gradle.properties文件中,否则您将得到我的问题中提到的错误。

我尝试不使用它,发现正是因为这个原因我才得到错误。要将依赖项升级到androidx,请访问此网站-https://developer.android.com/topic/libraries/support-library/refactor,也可以从Studio的“折射镜”标签中自动完成此操作。