skip to Main Content

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!

2

Answers


  1. 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

    Login or Signup to reply.
  2. Since android 12 granting permissions in manifest isn’t enough imo. Check out:
    https://developer.android.com/training/permissions/requesting

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search