A problem uploading my app to Google Play

Translation: My Br0ther Mohamed, I didn’t ask for the permission from my application but it shows errors on Google play , how can I solve it?


A component or extension you used might be declaring the location permission in your app’s manifest, which isn’t allowed for apps targeting users under 13, you might try one of these solutions:
1- remove any component that needs the location permission, such as the location sensor,ads,etc…
2- change your target audience to target users above 13
3- If your app doesn’t really require the location permission you can edit your app’s manifest manually and remove all of the location permissions,such as: android.permission.ACCESS_FINE_LOCATION , android.permission.ACCESS_COARSE_LOCATIN,etc…See here:

4 Likes