Home > Blockchain >  What are all possible permissions taken by apps?
What are all possible permissions taken by apps?

Time:02-08

There are two types of app permissions in case of android apps

  1. Install time permissions- apps take permission while being installed (run at startup, install shortcuts, run in background etc.)
  2. Run time permissions- Users give permission to the app (gallery, camera, contacts etc.)

Can you please give me the separate lists of all the permissions? Also, how to know which permissions are taken by an app?

CodePudding user response:

for permission list

[https://developer.android.com/reference/android/Manifest.permission]

go through this page do some digging you will find required info

[https://developer.android.com/guide/topics/manifest/manifest-intro]

CodePudding user response:

check out this answer hope it will help you

stackoverflow.com/a/36937109

also for more information refer this documentation:

https://developer.android.com/guide/topics/permissions/requesting.html#normal-dangerous

  •  Tags:  
  • Related