Topic starter
22/07/2021 6:58 pm
Today I have added MoPub SDK to my android app dependency to integrate MoPub ads. When I try to upload the build in PlayStore, then I got warning saying the app contains ACCESS_COARSE_LOCATION permission which impacts existing users. Actually my app doesn't require location permission so can anyone please help me to overcome this issue.
22/07/2021 7:36 pm
This is a known issue. It is also mentioned in the MoPub documentation.
https://developers.mopub.com/publishers/android/integrate/
Add the below permission in your AndroidManifest.xml file to remove the ACCESS_COARSE_LOCATION permission from your app.
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" tools:node="remove" />
This post was modified 3 years ago 2 times by admin