I use MoPub SDK for my app monetization, it adds android.permission.ACCESS_COARSE_LOCATION permission to manifest but when I run the app there is no system dialog to request this permission (Protection level: dangerous) so it's useless.. Why is it needed then? Is there a specific option when this permission can be used, mb should be enabled during MoPub initialization?
For now I remove it from my manifest because it's the only dangerous permission my that specific app has
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION"
tools:node="remove" />
But would be interesting why SDK adds it...