Norman Breau
Norman Breau
Closing as stale Unclear the environment of the OP, but yes, editing images depends on support of the underlying camera app. Not all android devices have a camera app assigned...
Relaunching tests
The android test failures are due to a known incompatibility issue between cordova-android and cordova-paramedic testing tools. It's not the result of this PR, so they can probably be ignored...
Cannot reproduce on modern versions ``` document.body.onclick = () => { navigator.camera.getPicture((e) => { console.log(e); document.body.style.backgroundImage = `url("data:;base64,${e}")`; }, (e) => { console.error(e); }, { destinationType: navigator.camera.DestinationType.DATA_URL }); }; ```...
Closing as stale/no response.
If content is all that is missing and ``` else if (path.startsWith(LocalFilesystemURL.fsNameToCdvKeyword("content"))) { targetFileSystem = "content"; } ``` is what is needed to add it, then PR would definitely be...
duplicate: https://github.com/apache/cordova-plugin-file/issues/316
> How do I use your "FORK"? My branch has been deleted since then, but my [PR](https://github.com/apache/cordova-plugin-file/pull/487) was merged in and released in [v7.0.0](https://github.com/apache/cordova-plugin-file/blob/master/RELEASENOTES.md#700-apr-08-2022) However, Android Scoped Storage makes it...
`getFile` expects a filename not a file path. It's intended (for either reading or creating) to get the inside the `DirectoryEntry`. Please see the [examples](https://github.com/apache/cordova-plugin-file#create-a-persistent-file-) for valid usages.