Which Android permission you should add to allow your application to read the device’s address book?
Which Android permission you should add to allow your application to read the device’s address book?
To allow your application to read the device’s address book, you should add the READ_CONTACTS permission. This permission grants access to read the user's contacts data. The correct element to add in the manifest file is <uses-permission android:name="android.permission.READ_CONTACTS" />.
D. READ_CONTACTS