我无法运行我的 Android Studio 项目 - 它显示清单合并失败并出现多个错误



这是我的android。清单文件。我在这里搜索了很多东西,但我的问题还没有解决。我能做什么?

<?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.example.e_healthcareapp" >
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.EHealthcareApp"
tools:targetApi="31" >
<activity
android:name=".MainActivity"
android:exported="false"
android:label="@string/title_activity_register_option" />
<activity
android:name=".Login_options"
android:exported="false"
android:parentActivityName=".MainActivity" />
<activity
android:name=".Registration"
android:exported="false"
android:label="Registration Form"
android:parentActivityName=".Registration" />
<activity
android:name=".MainActivity2"
android:exported="false"
android:label="Log in Form"
android:parentActivityName=".MainActivity2" /> <!-- back button values -->
<activity
android:name=".MainActivity"
android:exported="true"
tools:ignore="DuplicateActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

这是我的build.gradle(module:appname)

在你的清单中,你可以选择文本和合并清单(在Android Studio的清单下面)。点击合并清单,会有一个详细的错误描述。