Android 12 Manifest merger failed with multiple errors, see logs

Solution 1:

I sew you have 5 activities and only the first activity has the following attribute.

android:exported="true"

Just try adding this attribute to the rest of the activities in your Manifest.

<activity
            android:name=".activities.MainActivity"
            android:label="@string/title_activity_main"
            android:exported="true"
            android:screenOrientation="portrait" />

        <activity
            android:name=".activities.InboxActivity"
            android:exported="true"
            android:screenOrientation="portrait" />

        <activity
            android:name="ly.warp.sdk.activities.WarpViewActivity"
            android:label=""
            android:exported="true"
            android:screenOrientation="portrait" />

        <activity
            android:name="ly.warp.sdk.dexter.PermissionsActivity"
            android:launchMode="singleInstance"
            android:screenOrientation="portrait"
            android:exported="true"
            android:theme="@android:style/Theme.Light.NoTitleBar" />