I made a new app and I'm in the process of uploading it to google play store. But I am getting exported="false" error. I tried many ways but couldn't. I updated most of the packages in the pubspec file to the latest version, but still the false value did not return to true.
Asked
Active
Viewed 202 times
1 Answers
0
As you said you had updated all pubs to latest version then you need to update your compileSDKVersion to 33 and for that you need to specify in your project's Android Maniifest file and make launcher activity to be "android:exported"="false" as per this

Dhrumil Shah
- 121
- 3
-
I did what you said first, but the merge-manifest tab does not appear in android studio, and I don't understand which activity should I give false value, sorry. – muratapps Sep 28 '22 at 11:50
-
android:name=".MainActivity" should be android:exported="true" you can check it here https://developer.android.com/studio/build/manage-manifests#merge-manifests – Dhrumil Shah Sep 29 '22 at 04:18