Merging Errors: Error: android:exported needs to be explicitly specified for element <activity#com.instabug.bug.view.reporting.ReportingContainerActivity>. Apps targeting Android 12 and higher are required to specify an explicit value for android:exported
when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details
Question posted in Android Studio
The official documentation can be found here.
The official documentation can be found here.
2
Answers
Look at my manifest and still the same problem
In your manifest file(AndroidManifest.xml), add android:exported="true" inside your ReportingContainerActivity’s activity tag.