FAQ
Solve common Address Book permission and data issues quickly
Permissions & Setup
Do I need to add contacts permissions manually in my project settings?
The permission dialog never appears—what's wrong?
Players denied access—how do I let them enable it later?
void OnContactsLoaded(AddressBookReadContactsResult result, Error error)
{
if (error != null && error.Code == (int)AddressBookErrorCode.PermissionDenied)
{
// Show UI explaining the benefit, then:
Utilities.OpenApplicationSettings();
return;
}
// Process contacts
}How can I test Limited access on iOS?
Reading Contacts
My contact list is empty even though permission is granted—what should I check?
Contact images aren't loading—what's the issue?
Can I read contacts synchronously instead of using callbacks?
How do I handle pagination for large contact lists?
Testing & Debugging
Where can I confirm plugin behaviour versus my implementation?
How do I reset test data in the simulator?
Does Address Book work in the Unity Editor?
Last updated