I am using a well-known HTML 5
method of capturing and uploading images that will support most recent smartphones. Here's my code:
<input id="attach-file" type="file" accept="image/*" capture="camera">
Works beautifully on all the devices I care about.
Problem is this:
On Android, the file you capture auto-saves to the gallery. I am implementing this in an application where privacy and security are very crucial. We cannot have the file saving to the users' device. Does anyone know a way of preventing the OS
from autosaving the pictures?