Home > Software engineering >  Android Manifest permissions issue
Android Manifest permissions issue

Time:02-08

I have an app where im using uses-permission tags in the AndroidManifest.xml to give some permissions to my app, eg CAMERA. But when i check the permissions through my phone's settings all the given permissions are denied and i have to manually change it to allow. What could be wrong? Thanks!

CodePudding user response:

In higher Android versions the user needs to allow the permissions. You must to show a dialog asking about the permissions

https://developer.android.com/training/permissions/requesting

CodePudding user response:

Since android 12 granting permissions in manifest isn't enough imo. Check out:
https://developer.android.com/training/permissions/requesting

  •  Tags:  
  • Related