Action requested: Declare your Ad ID permission

Case 1: The app doesn’t contain any Ads: You can simply remove/ignore it by adding tools:node=”remove” in the AndroidManifest.xml file. <uses-permission android:name=”com.google.android.gms.permission.AD_ID” tools:node=”remove”/> Make sure you have xmlns:tools at the top of AndroidManifest.xml file Even if another third-party library asks for this specific permission, the build will be forced not to merge it in your … Read more

Google play console said “You can’t edit this app until you create a new app release declaring sensitive permissions” how to fix it?

In my case Google removed my app from production, to be able to submit a new release without using the sms i had to: Retain the previous release (where i was using sms), Because of the first step the permission form appeared, I filled the form Added the new apk (without sms) Deactivated the old … Read more

Flutter: upgrade the version code for play store

Update version:A.B.C+X in pubspec.yaml. For Android: A.B.C represents the versionName such as 1.0.0. X (the number after the +) represents the versionCode such as 1, 2, 3, etc. Do not forget to execute flutter build apk or flutter run after this step, because: When you run flutter build apk or flutter run after updating this … Read more

You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, but without the ‘an

According to google new policy If your app targets Android 12 or higher and contains activities, services, or broadcast receivers that use intent filters, you must explicitly declare the android:exported: true attribute for these app components. So In the main manifest file check all the activities, services, and receivers that can use intent-filter which are … Read more

How to remove application from app listings on Android Developer Console

No, you can unpublish but once your application has been live on the market you cannot delete it. (Each package name is unique and Google remembers all package names anyway so you could use this a reminder) The “Delete” button only works for unpublished version of your app. Once you published your app or a … Read more