-2

I want to view pop up like OLA app for ask permission only one time to user(do not need more click for user ) . I am using this example and no other concept or logic found out any where enter link description here

Community
  • 1
  • 1
Essar
  • 1
  • 2

1 Answers1

0

Android Runtime Permissions are categorized into two parts Normal and Dangerous Permissions

Normal Permissions: They Just to be added in manifest

Dangerous Permissions: They need to asked at runtime from user.

All dangerous Android system permissions belong to permission groups.

enter image description here

you can request a group permission and all permissions in a group will be granted in single click but if you need some permission from different groups then you will see different popups from system.

Hope you understand the structure.

Community
  • 1
  • 1
Sohail Zahid
  • 8,099
  • 2
  • 25
  • 41