为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

哈士奇WWW 2023-03-31 16:45:57
这是我的依赖项(模块:应用程序)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.
查看完整描述

2 回答

?
拉丁的传说

TA贡献1789条经验 获得超8个赞

如何通过选择迁移到 AndroidXRefactor > Migrate to AndroidX并让重构完成工作

看来你不想迁移到 AndroidX,但你应该试一试,因为 android 支持 28.0.0 是最后一个版本,android 从现在开始只会更新 androidx。

这是 Support Library 28.0.0 的稳定版本,适合在生产环境中使用。这将是 android.support 打包下的最后一个功能版本,鼓励开发人员迁移到 AndroidX。


查看完整回答
反对 回复 2023-03-31
?
慕码人8056858

TA贡献1803条经验 获得超6个赞

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

查看完整回答
反对 回复 2023-03-31
  • 2 回答
  • 0 关注
  • 181 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信