Is there any document of list of permissions in android and the names of methods for which these permissions are needed.
Thanks!!
Asked
Active
Viewed 1,009 times
1

gauri
- 231
- 5
- 18
2 Answers
4
Refer the document for the Manifest.permission

Paresh Mayani
- 127,700
- 71
- 241
- 295

Shankar Agarwal
- 34,573
- 7
- 66
- 64
-
This is your best resource since it would be unfeasible to create and maintain a list of all the methods in android and their permissions. New methods are added all the times and permissions are changed or new ones are added as well. In case you are interested in the permissions for a method, a simple Google search is all you need to do. – Bandreid Apr 06 '12 at 09:42
-
For the methods that each permission protects see http://stackoverflow.com/a/24019120/475329 – Ben Holland Dec 08 '14 at 00:31
1
PScout was a tool that analysed Android SDK and generated a map that maps Android permissions to methods.
Original PScout website doesn't work anymore but I extracted the mapping from original PScout and pushed it to Github. You can easily check it out and parse it if you need it.
Here you can find all methods that PScout found which require Android permissions.
PScout results- map of Android permissions and methods that require those permissions

Drag0
- 8,438
- 9
- 40
- 52