September 2019
Beginner
512 pages
12h 52m
English
In iOS, we need to provide an appropriate description of the Info.plist file so that the user knows why the app needs the requested permission. This is done in the ios/Runner/Info.plist file:
<dict> ... <key>NSContactsUsageDescription</key> <string>You can import a friend from a list of contacts.</string> </dict>
When the app tries to access contacts in iOS, the system will ask for the user's permission by showing the provided description.
Read now
Unlock full access