Created
November 17, 2016 15:34
-
-
Save sibelius/83697c2f2f19330f83798729c0670da7 to your computer and use it in GitHub Desktop.
ios 10 permissions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- πΌ Photo Library --> | |
<key>NSPhotoLibraryUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π· Camera --> | |
<key>NSCameraUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π€ Microphone --> | |
<key>NSMicrophoneUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Location --> | |
<key>NSLocationUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Location When In Use --> | |
<key>NSLocationWhenInUseUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Location Always --> | |
<key>NSLocationAlwaysUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Calendars --> | |
<key>NSCalendarsUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- β° Reminders --> | |
<key>NSRemindersUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Motion --> | |
<key>NSMotionUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Health Update --> | |
<key>NSHealthUpdateUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π Health Share --> | |
<key>NSHealthShareUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- απ΅ Bluetooth Peripheral --> | |
<key>NSBluetoothPeripheralUsageDescription</key> | |
<string><Your description goes here></string> | |
<!-- π΅ Media Library --> | |
<key>NSAppleMusicUsageDescription</key> | |
<string><Your description goes here></string> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment