Skip to content Skip to sidebar Skip to footer

Manifest.permission.read_profile Not Found

While working on an Android application I am required to grant permission for reading/writing for contacts and profile. I found Android manifest file have possible permissions like

Solution 1:

READ_PROFILE permission was removed on API 23 as stated here:

https://developer.android.com/sdk/api_diff/23/changes.html

Use GET_ACCOUNTS instead.

https://developer.android.com/guide/topics/permissions/requesting.html#perm-groups

Post a Comment for "Manifest.permission.read_profile Not Found"