Philip Peitsch
Philip Peitsch
10.0.2.2 happens to be loopback when running an Android emulator. Not entirely sure why it ends up being attempted here...
Right... seems to be coming from here: https://github.com/kotarella1110/cordova-plugin-webpack/blob/master/src/webpackServe.ts#L78 For some reason, the `prepareUrls` is getting confused there
I needed to call `disableWebViewOptimizations()` in Cordova's `pause` event. The 5min limit there is from the WebView itself throttling things down after a certain amount of time not being visible.
Adding a "me to" here as well. I've just migrated a project up to ember 3 & node 8.9.4, and we're now having to re-run npm install a second time...
Just adding, a workaround for this is to: 1. Add fsevents into the `optionalDependencies` section of `package.json 2. Tell people to install using `npm install --no-optional` It seems that just...
If I'm understanding this correctly... this appears to be simply how CocoaPods works: * https://github.com/CocoaPods/CocoaPods/issues/4859 * https://github.com/CocoaPods/CocoaPods/issues/7314 Changing this value only changes the Pod project's own default deployment target, which...
To maintain backwards compatibility with existing type definitions, we could add the following type aliases to the `index.d.ts` here: ``` type Entry = FileSystemEntry; type DirectoryEntry = FileSystemDirectoryEntry; type FileEntry...
@fcamblor yep, that makes sense! I missed that, sorry! Typescript 4.4 was first released a bit over a year ago, so I guess at some point people will be more...
I've raised a slightly different pr at https://github.com/apache/cordova-plugin-file/pull/536 which rebalances the compatibility trade-off a bit differently to yours here @fcamblor . It's slightly less-nice than master in terms of type...
Just noting this change has bit me also. Prior to the v7 update with the changes to support the custom asset loading on Android, you could safely call `resolveLocalFileSystemURL` with...