0

Is it possible in runtime to enumerate permissions that are declared in AndroidManifest ?

Update: Declared in this way:

    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
Vladimir Berezkin
  • 3,580
  • 4
  • 27
  • 33

1 Answers1

0

You may ask the all required runtime permissions on the start of your app. You must array of permission check. If it returns false means you must ask permissions as array and in the method onRequestPermissionsResult method you can check if the permission is granted or not. If the permission is not granted check the permission once again. Thanks in advance

Balaji S B
  • 36
  • 6