Reputation: 21
hope all doing good. I'm facing an issue with target sdk 30 when uploading my app to google console. Minimun target sdk required for google console is 31. How to update target sdk from 30 to 31enter image description here
Upvotes: 0
Views: 2628
Reputation: 382
Apps targeting Android12/API 31 must explicitly declare android:exported for all the activities, services and BroadcastReceivers whichever has an intent filter. https://developer.android.com/about/versions/12/behavior-changes-12#exported
Please check whether you have declared android:exported wherever needed. It can be declared in Manifest or in the respective file.
Upvotes: 1