Polymer applications fail to load in an iOS WKWebView, as supported by Cordova. The root cause of the problem is that WKWebView does not permit loading of content via file:. Cordova's support for WKWebView bypasses this restriction by implementing a in-app web server to host the static content. Polymer fails because the polymer code tries to load a local, static, html file, using a file:// url via an XHR request. The file:// XHR request is rejected by WKWebView.
This has turned into a blocking issue for publishing Polymer applications, using Cordova, on iOS.
Does this sound familiar to anybody?
Is there anyway to cleanly define the URL where Polymer loads elements (or whatever is loaded via the file:// XHR)?