Norman Breau
Norman Breau
Alternatively, you can probably use the native browser feature as well instead of the media plugin. ```javascript let path = cordova.file.applicationStorageDirectory + "/test.mp3"; window.resolveLocalFilesystemURI(path, function(fileEntry) { let audio = new...
> plugin version from 2.4.3 to 3.3.0 I'm assuming you mean 3.0.0, as 3.3.0 doesn't exist. Are you using the `StatusBarOverlaysWebView` preference? While Android always supported the overlay statusbar, it...
> even when upgrading to 3.0.0 that preference was kept as false and the results were the ones described. Are we missing something? Doesn't sound like it. Are you able...
Please edit and fill out the form.
I don't think this is a bug... but probably an undocumented caveat with the browser implementation. `applicationDirectory` is the directory of your app installation. On iOS/Android, this refers to the...
If you're app is configured to use schemes (e.g. your html page is loaded over `http(s)://...` on android or `app://...` (the scheme is customizable on iOS) then using `file://` paths...
I was able to take a deeper look this morning and `.toURL()` on file entries is suppose to produce a DOM-usable url, but it won't on ios when using app...
This would be specific to iOS but I've been told that since the addition of schemes on iOS there is a `WkWebView.convertFilePath` API available in JS. It's not ideal since...
> and the result of console.log of reader.onloadend is: "File letto con successo: -ArrayBuffer (byteLenght: 15310703, resizable: false, maxByteLenght: 15310703... This looks like it worked as intended, it has an...
> ps. im not currently using scheme, im using the default scheme which return me using .toURL() the default file:// There are known issues surrounding using `file://` hosted applications, which...