On Tue, Apr 8, 2014 at 7:01 PM, smoogli <[email protected]> wrote: > Hi, > which Samsung permissions (or other OEM and proprietary - non > "android.permission.*" permissions) are built-in and available today on > Android phones? > e.g., any such permissions for using Samsung KNOX? > and where\how is it possible to get information on them, either online or > on-device? >
You can list available permissions with the pm command: $ adb shell pm list permissions -f This won't tell you which permissions are 'built-in', but you will give you the defining package for each permission. To get permission defined by the framework pull the /system/framework/framework-res.apk (there might more than one on some devices) and unpack with something like apktool. Then check the AndroidManifest.xml file inside. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

