Just to share how to fix it in Appbuilder. If you use old camera plugin in cordova. (in Appbuilder too.) After IOS 10 have been change rules.You need to set description when App request permission. How to fix in AppbuilderOpen App option => Cordova tab => Configuration in cordova tab => Extra XML in Configuration and paste below.
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge"> <string>need camera access to take pictures</string> </edit-config>
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge"> <string>need photo library access to get pictures from there</string> </edit-config>
<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge"> <string>need location access to find things nearby</string> </edit-config>
<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge"> <string>need photo library access to save pictures there</string> </edit-config>
Another solution is use other plugin that update like media-capture(Old camera plugin did not update for 2 years.)