As part of the process, I get this error with the latest version of xcode:
[access] This app has crashed because it attempted to access privacy-sensitive data without a usage description.
The app's Info.plist must contain an NSPhotoLibraryUsageDescription key
with a string value explaining to the user how the app uses this data.
I need to add some keys to my app plist. I can do that manually in xcode and everything works fine. But how do I do this generically so that the keys appear when the user runs:
you need to open info.plist in xcode and add description for require plugin like location.
1-go to projectFolder/platforms/ios/yourAppName/yourAppName-Info.plist
2-open yourAppName-Info.plist in xcode
3-find your plugin with and in value field describe to user why you need to access this plugin.
for example in photo we need access bluetooth and in value field we wrote “This app requires constant Bluetooth access to function properly.” but you need to explain more.
for more information and learn more you can open below link thanks…