Posts

Showing posts with the label Hybrid Mobile App

Cordova Info.plist NSCameraUsageDescription Key Is Missing

Answer : NEW ANSWER: Since Cordova CLI 6.5.0 you can write in the info.plist directly by using the edit-config tag in the config.xml like this: <string>your usage message</string> </edit-config> But make sure you are using latest version of the plugins or values might be overwritten by the plugin variables. For localizations you can use the resource-file tag and InfoPlist.strings files like in this plugin (but you don't need the plugin, resource-file tag is supported from the config.xml) https://github.com/MBuchalik/cordova-plugin-ios-permissions OLD ANSWER: You can't write on the info.plist from the config.xml using the config-file tag yet (it's being worked on) Latest version of the camera plugin allows you to add the NSCameraUsageDescription when you install the plugin cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="your usage message" Right now it's not possible to localize this string Here are...