Norman Breau

Results 826 comments of Norman Breau

> @Polm90 > Is this possible? Because Apple has the requirement since April to compile Apps with XCode 11. Does cordova-ios 5.1.1 compile with XCode 11? I'm asking this, because...

I'm not really an expert with iOS development but there was a discussion on slack similar to this, and I think using [WKWebKit.convertFilePath](https://github.com/apache/cordova-ios/blob/master/cordova-js-src/plugin/ios/wkwebkit.js#L28) to convert `file://` urls to `cdvfile://` urls...

> Do you know, if I must add the cdvfile-protocol like the app-protocol to my config.xml, or does it function without it? I'm not sure, this is not something I...

> @kkabell it seems like it's working and `resolveLocalFileSystemURL` returns a url. However, when I try to load that url using the `` tag I get and error: > >...

Sorry, your problem is not very clear to me. This plugin only offers APIs to read and write files to the filesystem. It does not provide the means of downloading...

Potentially related to https://github.com/apache/cordova-plugin-file/issues/350 (both dealing with `sdcard` external storage)

Related: https://github.com/apache/cordova/issues/39

Currently a workaround would be to create your own definition file that you can include in the project, which would declare the variables and functions added by the `cordova-plugin-file`, which...

> How did you add the files to your tsconfig? In my projects where i need to write my own type definitions cause a third party doesn't supply them, I...

Can you test with `FILE_URI` instead of `DATA_URL` destination types? In my experience, `DATA_URL` can cause memory issues and results in crashes on some devices, because representing high resolution images...