2

Is there a full list of M new protection level list? Where does:

com.android.vending.BILLING
com.android.vending.CHECK_LICENSE

belong? To PROTECTION_NORMAL? Full list for reference?

1
  • that's not a permission of android M, that's a permission of Google Play. (so I don't even know if that belongs in a specific protection level)
    – njzk2
    Commented Sep 11, 2015 at 16:09

1 Answer 1

1

https://developer.android.com/preview/features/runtime-permissions.html#check-for-permission

App Permissions are not covered by this. They are usually enforced by a signature.

2
  • So I assume signature permissions are automatically approved like PROTECTION_NORMAL? And listed permissions above (BILLING, CHECK_LICENSE) are signature permissions?
    – powder366
    Commented Sep 12, 2015 at 11:47
  • Yep. Normal is granted upon install if in the manifest. Yep and those Signature permissions are also granted upon install and validated via another app externally without user interaction Commented Sep 14, 2015 at 5:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.