Android Question Permission to read contacts (screenshot)

Beja

Expert
Licensed User
Longtime User
Some help with manifest editor
Tried to use the ContactsUtils example in my project as inner activities.. I called the activity "Imported".
The I tried to call it from my Main activity with: StartActivity(Imported).. and expected to go the contacts activity, but
I got the following error >
Please tell me what text (permission) should I add to the manifest.. thanks in advance.
I must mention that the ContactsUtils example was and is, working fine when compiled alone.
 

Attachments

  • AndroidPermission.jpg
    AndroidPermission.jpg
    57 KB · Views: 241

hbruno

Member
Licensed User
Longtime User
Menu Project - Manifest Editor
add at the end :
AddPermission (android.permission.READ_CONTACTS)
 
Upvote 0
Top