Tomáš Andrek (Solution Architect)
The new version of iOS = new set of problems. Does your application crash because of the camera?
With the new version of IOS there is a new minor requirement if you wish to use your camera device. Installation .plist file should be updated, otherwise the application will crash. With the new keys we can also manage the installation permission message:
<key>NSCameraUsageDescription</key> <string>This app needs access to the camera to take photos.</string> <key>NSPhotoLibraryUsageDescription</key> <string>This app needs access to photos.</string>
Read more on the Xamarin blog: https://blog.xamarin.com/new-ios-10-privacy-permission-settings/