I have the error “Manifest merger failed with multiple errors, see logs”. I have been trying to fix this error for 2 days now. I read a lot of documentation. but no result.
that’s the error
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugMainManifest'.
> Manifest merger failed with multiple errors, see logs
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
BUILD FAILED in 837ms
This is my AndroidManifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:name=".app.App"
android:theme="@style/Theme.LookMart">>
<activity
android:name=".presentation.main.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<nav-graph android:value="@navigation/main" />
</activity>
</application>
</manifest>
I am new to programming. sorry if this is so stupid. But thanks
New contributor
Azimjon Xolmirzayev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.