Determining the level of Android permission
Posted
by
k4b
on Stack Overflow
See other posts from Stack Overflow
or by k4b
Published on 2012-05-18T12:25:30Z
Indexed on
2012/09/10
3:38 UTC
Read the original article
Hit count: 124
I have some Android permissions which I would like to know to which permision PROTECTION LEVEL they belong. Does anybody know how can this be checked? For example I need to know the PROTECTION LEVEL of android.permission.RECEIVE_BOOT_COMPLETED permission, but I would like to check many more.
EDIT:
I see that I didn't put it clearly: What I mean is not an API level with which permission was introduced, but permission protection level, one of four: Normal, Dangerous, Signeture, SignatureOrSystem. It determines for example how this permision is presented to user during the application installation. How can I check to which protection level certain permission belongs?
© Stack Overflow or respective owner