jmarshall-com
jmarshall-com
I managed to work around this by using `blob:` URLs for all displayed images: ``` let blob= new Blob([await read_file_binary(file_entry)]) ; img.src= URL.createObjectURL(blob) ; ``` ... where `read_file_binary()` reads a...
Thanks for looking into this. I just now added an alert() at the end of my on_pause(), and when I press the overview button, the alert() shows briefly, so the...
Exactly this is still happening for me, i.e. when running on iOS only, using `FileEntry.copyTo()` onto an existing file results in a `PATH_EXISTS_ERR`. Looking into the source code at `plugins/cordova-plugin-file/src/iOS/CDVLocalFilesystem.m`,...
Thanks @ShehanS and @peitschie for their detailed answers here; they solved my problem. I've found that the SYSTEM_ALERT_WINDOW permission is not needed-- I only needed to add RECEIVE_BOOT_COMPLETED into config.xml...