gpt4 book ai didi

Android Studio, list 合并失败,出现多个错误

转载 作者:行者123 更新时间:2023-12-05 00:15:15 25 4
gpt4 key购买 nike

当我调试我的项目时,出现错误“ list 合并失败并出现多个错误,请参阅日志”
任务 ':app:processDebugMainManifest' 执行失败。
错误:
来自 [androidx.core:core:1.5.0] AndroidManifest.xml:24:18-86 的属性 application@appComponentFactory value=(androidx.core.app.CoreComponentFactory)
也存在于 [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91 value=(android.support.v4.app.CoreComponentFactory)。
建议:将 'tools:replace="android:appComponentFactory"' 添加到 AndroidManifest.xml:5:5-22:19 的元素以覆盖。
AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kelompok22.veterinarycare">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Transparent">
<activity android:name=".RegisterActivity"></activity>
<activity android:name=".StartActivity" />
<activity android:name=".LoginActivity" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

最佳答案

打开应用程序 list ( AndroidManifest.xml ) 并单击 Merged Manifest编辑 Pane 底部的选项卡。 检查下图:
enter image description here
从图片可以看到错误 在右栏中,尝试解决错误。它可能会帮助有同样问题的人。阅读更多 here .
此外,一旦发现错误并且从正在使用的外部库中获取该错误,您必须让编译器忽略来自外部库的属性。
//在manifest的application标签中添加这个属性

   tools:replace="android:allowBackup" 

//Add this in the manifest tag at the top

xmlns:tools="http://schemas.android.com/tools"

关于Android Studio, list 合并失败,出现多个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68272004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com