IOS10 Configuration Permissions Details

  • 2021-07-26 08:58:01
  • OfStack

In iOS10, if your App wants to access the user's camera, photo album, microphone, address book, etc., it needs to be configured, otherwise it will directly crash.

You need to add 1 device permissions required by App to info. plist.

NSBluetoothPeripheralUsageDescription

Access Bluetooth

NSCalendarsUsageDescription

Access Calendar

NSCameraUsageDescription

Camera

NSPhotoLibraryUsageDescription

Photo album

NSContactsUsageDescription

Address book

NSLocationAlwaysUsageDescription

Always access the location

NSLocationUsageDescription

Position

NSLocationWhenInUseUsageDescription

Access location during use

NSMicrophoneUsageDescription

Microphone

NSAppleMusicUsageDescription

Access the media database

NSHealthShareUsageDescription

Access Health Share

NSHealthUpdateUsageDescription

Access health updates

NSMotionUsageDescription

Visit sports and fitness

NSRemindersUsageDescription

Access reminders

From January 1, 2017, https is forced to be used. All newly submitted app are not allowed to use NSAllowsArbitraryLoads by default to bypass the restriction of ATS. Secure transmission no longer supports SSLv3. It is recommended to disable SHA1 and 3DES algorithms as soon as possible

Thank you for reading, hope to help everyone, thank you for your support to this site!


Related articles: