Showing `Missing permission` even after adding permission inside manifest

Viewed 348

Here is the warning
enter image description here
Permission in manifest

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

I have tried by removing space from permission, by restarting android studio, by invalidate and restart, by clean > rebuild. Nothing worked. Comment for more info.

1 Answers

I just met this problem & i checked that i implemented a lib in the gradle module, maybe a lib you added in the gradle is the problem, make sure to remove it.

Related