Permissions that can have a large impact on user privacy, tagged as dangerous by Android, should be requested only if they are really necessary to implement critical features of an application.
dangerous permissions requested by the application are really necessary. You are at risk if you answered yes to any of those questions.
dangerous ones only if they are really necessary. In AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- Sensitive --> <uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION" /> <!-- Sensitive -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- Compliant -->