Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created November 17, 2016 15:34
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sibelius/83697c2f2f19330f83798729c0670da7 to your computer and use it in GitHub Desktop.
Save sibelius/83697c2f2f19330f83798729c0670da7 to your computer and use it in GitHub Desktop.
ios 10 permissions
<!-- πŸ–Ό 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