You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a hint, in later versions of iOs, when accessing to the camera and photo gallery, the app MUST include a text to ask permission to the user.
I realized the aplication (using Canvas2Image plugin) crashed because of this "security" issue ...
It could be fixed by including the next lines in you config.xml of your project, into the section
<config-file parent="NSPhotoLibraryUsageDescription" platform="ios" target="*-Info.plist"> <string>This app needs access to your Photo Library to include a screenshot.</string> </config-file> <config-file parent="NSCameraUsageDescription" platform="ios" target="*-Info.plist"> <string>This app needs access to the Camera.</string> </config-file>
No working without any Error.
The text was updated successfully, but these errors were encountered: