Manifest Merger Failed : Apps Targeting Android 12 And Higher

[Solved] Manifest Merger Failed : Apps Targeting Android 12 And Higher | Java - Code Explorer | yomemimo.com
Question : Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported`

Answered by : healthy-hummingbird-xrq6pxk75v7x

<activity android:name=".MainActivity" android:exported="true" <-- add this android:theme="@style/Theme.MyApplication.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>

Source : https://stackoverflow.com/questions/67412084/manifest-merger-failed-apps-targeting-android-12-android-studio-error | Last Update : Mon, 18 Oct 21

Answers related to Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported`

Code Explorer Popular Question For Java