android 清单合并失败,出现多个错误,建议的解决方案不起作用

6vl6ewon  于 2022-11-20  发布在  Android
关注(0)|答案(1)|浏览(263)

已经有很多关于这个主题的项目,我已经读了很多,但没有任何成功。
在我的合并菜单中出现以下错误

Merging Errors: 
Warning Package name 'android.support.graphics.drawable' used in: AndroidManifest.xml, AndroidManifest.xml. 
animated-vector-drawable:28.0.0 manifest 
Warning Package name 'androidx.versionedparcelable' used in: AndroidManifest.xml, AndroidManifest.xml. 
support:versionedparcelable:28.0.0 manifest 
Error: Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from 
AndroidManifest.xml:22:18-91 is also present at AndroidManifest.xml:24:18-86 value=(androidx.core.app.CoreComponentFactory). 
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:20:5-83:19 to override. 
TripMemory.app main manifest (this file), line 21

现在警告惹恼了我,但让我们暂时离开他们。错误是问题所在,我不知道问题是什么。它建议添加一个“工具:替换...”,但当我这样做时,我只会得到下一个错误,而且感觉像是绕过了这个问题,而不是解决它。
我也不明白为什么我得到错误的我没有更新工作室,我只是修复一些布局的东西。甚至没有错误的只是改进。然后第一次开始与AndriodX消息。然后这个。也许这是一个线索的人。
我的Android清单. xml

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

    <!-- location via GPS -->
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <!-- needed to get photo's of the phone -->
    <!--<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />-->

    <!-- needed to use the camera and export -->
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <!-- needed to use the camera -->
    <!--<uses-permission android:name="android.permission.CAMERA" />-->

    <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/Default">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/Default.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                ....

有谁能帮我看看这个错误并找到解决方案吗?

更新根据ommonsWare的建议,我在此处添加了build.gradle(app)文件 * 将其作为图像,以便颜色清晰。*

hc2pp10m

hc2pp10m1#

只是一个更新,任何人都应该面对同样的问题。最后我选择从头开始重建我的应用程序。幸运的是,我是一个小应用程序,这是快得多,因为我从错误到错误再到错误。回想起来,这个问题也让我重新构建了一些基础工作,使应用程序更好。

相关问题