Android App category and permission list
Just want to know that there is a list anywhere on the Internet, which contains a list of all permissions usually associated with some application category types?
For example
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
thank you
resolvent:
I think there is some confusion because the list is very clear to developers what permissions are required. However, when installing users, the permssions category will be displayed instead of a complete list of individual permissions. I agree that it will be useful to fully map each permission to the permission category. The following is a category required for the installation of a sample application:
I find this resource helpful, but it doesn't explain everything http://developer.android.com/guide/topics/security/security.html Explain that developers can run the following commands to "display permissions in a form roughly similar to what users will see them."
ADB shell PM list permissions - S