Android 6.0 permission.GET_ACCOUNTS

后端 未结 6 996
予麋鹿
予麋鹿 2020-12-24 11:47

I\'m using this to get permission:

if (ContextCompat.checkSelfPermission(context, Manifest.permission.GET_ACCOUNTS) != PackageManager.PERMISSION_GRANTED) {

         


        
6条回答
  •  抹茶落季
    2020-12-24 12:24

    GET_ACCOUNTS was moved into the CONTACTS permission group in Android 6.0. While the API has us provide permissions, the user (for Android 6.0 at least) is prompted for permission groups. Hence, the user will be given the same prompt for GET_ACCOUNTS as the user would get for READ_CONTACTS or WRITE_CONTACTS.

提交回复
热议问题