Android permissions: How can I learn which are dangerous vs normal?

后端 未结 6 2050
天涯浪人
天涯浪人 2020-12-08 23:19

Android defines a set of permissions that third-party apps can request. Permissions are categorized by sensitivity; most permissions are either \"normal\" or \"dangerous\".

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 00:00

    From android M permissions will be granted at runtime. User consent is not required for Normal permissions but for Dangerous permissions user is required to grant the permission to application.

    Normal permissions: https://developer.android.com/guide/topics/security/normal-permissions.html

    Dangerous permissions: Dangerous permissions cover areas where the app wants data or resources that involve the user's private information https://developer.android.com/guide/topics/security/permissions.html#normal-dangerous

提交回复
热议问题