i do not use gps in my game. when i build and deploy it google play it requires gps location feature. people can think that i will collect their location. how can i disable this feature?
Probably a plugin you’re using is calling or referencing some Location/LocationService, then once exported by Unity the location permission is added automatically to your AndroidManifest.
You need to identify which plugin and comment or delete any call or reference to any LocationService.
Or you can modify the AndroidManifest after Unity compilation (because editing Plugins/Android/AndroidManifest.xml will not work for your case).
it is strange that it adds an library that i never called from my code. there should be manual option to add libraries to compile like windows store apps has.