I found this list of Cordova plugins: https://community.simplifier.io/doc/current-release/deploy/simplifier-mobile-client/features-and-supported-operating-systems/
And checked how Simplifier is taking the photo. You’re using “navigator.device.capture.captureImage” from the “cordova-plugin-media-capture” plugin. This plugin enables photo, video and audio capturing. But it can only write to the local device file system. This causes another problem: The photos will also show up in the users device photo album and will stay there forever. This shouldn’t be the default behaviour of a business application.
Why is is Simplifier not using “cordova-plugin-camera” instead. This plugin gives you more control and other useful options, like picture quality, media type, target width and height, “save to photo album” or “destination type”. The plugin also has a cleanup function to remove the intermediate image files. The plugin can output the captured image as base64 or file uri.
What Cordova version is Simplifier using?