The first main issue is related to new privacy settings introduced in iOS10. The new properties are added to the projects info.plist which are basically localized message for the respective popups that will appear when features that are deemed privacy-sensitive. The new properties are as follows.
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) uses Camera</string>
<key>NSContactsUsageDescription</key>
<string>$(PRODUCT_NAME) uses Contact</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Background location data is sent to the upload URL.</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) uses Microphone</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) uses Photo Library</string>
The first main issue is related to new privacy settings introduced in iOS10. The new properties are added to the projects info.plist which are basically localized message for the respective popups that will appear when features that are deemed privacy-sensitive. The new properties are as follows.
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) uses Camera</string>
<key>NSContactsUsageDescription</key>
<string>$(PRODUCT_NAME) uses Contact</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Background location data is sent to the upload URL.</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) uses Microphone</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) uses Photo Library</string>