Ok, so Google policy doesn’t allow you to use location services if it’s not part of your app’s main functionality. You can’t use it just for advertising purposes… however at least one of appodeal’s adapters is adding permissions. They suggest adding this to the manifest
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"
tools:node="remove" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"
tools:node="remove" />
Is it possible to do this just through build.settings?
I’ve tried a few things in userPermissions, usesFeatures, but haven’t been able to figure it out yet if it’s even possible.