Hello @Tony Pitman ,
Welcome to our Microsoft Q&A platform!
When targeting Android.9 and lower, ACCESS_FINE_LOCATION and ACCESS_COARSE_LOCATION imply ACCESS_BACKGROUND_LOCATION. So if you want to remove the ACCESS_BACKGROUND_LOCATION permission, then you can not request ACCESS_FINE_ LOCATION or ACCESS_COARSE_LOCATION permission in your application.
For how to remove the ACCESS_BACKGROUND_LOCATION permission, please add tools:node="remove"
to the uses-permission
tag as below:
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" tools:node="remove" />
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.