错误崩溃实现'com.android.support:appcompat-v7:28.0.0'

这是我的依赖项(模块:应用程序)


dependencies {

    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:appcompat-v7: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.google.android.gms:play-services:12.0.1'

}

添加实施 'com.google.android.gms:play-services:12.0.1' 后,同步模块:应用在实施 'com.android.support:appcompat-v7:28.0.0' 时总是出错


错误 :


Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91

    is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).

    Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:5:5-19:19 to override.


哈士奇WWW
浏览 182回答 2
2回答

拉丁的传说

如何通过选择迁移到 AndroidXRefactor > Migrate to AndroidX并让重构完成工作看来你不想迁移到 AndroidX,但你应该试一试,因为 android 支持 28.0.0 是最后一个版本,android 从现在开始只会更新 androidx。这是 Support Library 28.0.0 的稳定版本,适合在生产环境中使用。这将是 android.support 打包下的最后一个功能版本,鼓励开发人员迁移到 AndroidX。

慕码人8056858

support library您在一个项目中同时使用两者androidx library,这就是问题所在。将支持库更改为首选的AndroidX库。implementation 'androidx.appcompat:appcompat:1.1.0-rc01'implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'testİmplementation 'junit:junit:4.13-beta-3'androidTestİmplementation 'androidx.test:runner:1.3.0-alpha01'androidTestİmplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'ETC.......您也可以从 Android Studio 本身迁移到 AndroidX只需转到Refactor > Migrate to AndroidX > Migrate
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java