Just wondering, is there a list anywhere on the internet that has a list of all the permissions that are generally associated with certain application category types?
eg.
Media Applications generally have the following permissions:
android.permission.ACCESS_DOWNLOAD_MANAGER
android.permission.ASEC_ACCESS
android.permission.ASEC_CREATE
android.permission.ASEC_DESTROY
android.permission.ASEC_MOUNT_UNMOUNT
android.permission.WRITE_EXTERNAL_STORAGE
android.permission.ACCESS_CACHE_FILESYSTEM
Thanks
I think there is some confusion because the manifest is very clear to developers which permissions are required. However, when installing users are presented with categories of permssions rather than the complete list of individual permissions. I agree, a complete mapping of individual permissions to permission categories would be very helpful. Here are the categories one example application requires on install:
I found this resource which is helpful, but does not explain everything. http://developer.android.com/guide/topics/security/security.html explains that a developer can run the following command to display “permissions in a form roughly similar to how the user will see them”.
adb shell pm list permissions -s
Yes you can refer this link. it is having all permissions. http://developer.android.com/reference/android/Manifest.permission.html
Hope this will help you. let me know if you need more
Not sure if this list has all the permissions but it does have a lot of permissions not found in the Android Developer reference.