We are using targetSdkVersion 30, I am trying to update it to 31
When I set targetSdkVersion to 31, I am unable to run/compile the app because it is failing build error in manifest.xml saying
android:exported needs to be explicitly specified for . Apps
targeting Android 12 and higher are required to specify an explicit
value forandroid:exported
when the corresponding component has an
intent filter defined. See
https://developer.android.com/guide/topics/manifest/activity-element#exported
for details. src/main/AndroidManifest.xml
I checked my manifest file, I added android:exported = true/false for every activity , receiver!
I do not have issue if I set targeted SDK version to 30, but 31
and I am sure I added android:exported to all applicable components in manifest
please help me
4
Answers
Update all libraries in build.gradle file if haven’t already. There’s a big chance that one of them is causing this. If this isn’t the case, you would have to manually check the Merged Manifest as mentioned by @DarShan.
It happened to me few days ago as well.
For your flutter project,
Go to:
*your_project*/android/app/main/AndroidManifest.xml
Search for the entry of the type
activity
withinapplication
in the sameAndroidManifest.xml
fileDelete .gradle, delete the folder
Reopen Android studio and change in project structure/grandle
Change the version of the grandle
In the project build.gradle update the dependencies
Chances are, it’s the libraries in your gradle file. This is how I solved it.