Question

My trigger.io-bundled jquery-mobile app works great on both android < 4.4 and iOS devices but refuses to load any relative pages, scripts etc. on android 4.4 once jquery mobile loads. Afaik, jqm turns all links to ajax requests, which suggests ajax requests are broken. WebView has been changed to be Chromium 30-based in kitkat and the migration guide mentions url handling as an area of breaking changes (second link below).

https://developer.android.com/about/versions/android-4.4.html https://developer.android.com/guide/webapps/migrating.html#URLs

There is at least one other person with a broken jqm/trigger.io app on android 4.4, see https://github.com/jquery/jquery-mobile/issues/6746 . I have put together a small app you can use to verify the issue: https://github.com/mnacos/jqm-kitkat

How do I get ajax requests working against relative urls again on android 4.4? Is there a way to control targetSdkVersion when building trigger.io apps for Android 4.4 (kitkat)? Is there a custom scheme defined in the trigger.io webview/browser which could help with relative links?

Était-ce utile?

La solution

Unfortunately the Android 4.4 WebView's URL canonicalization/normalization logic is a lot more conservative for non-standard[a] schemes. This is because the normalization of standard schemes assumes it can change the URL to lowercase, do %-encoding, etc.. which would break content:// URLs for example. If you look at the bug you've linked it seems like the root issue of the problem is jqm rewriting the urls to be content://// instead of content://.

I don't think it's likely resolving the 4 slashes meets the bar for an urgent fix in the WebView (you're welcome to file a bug on this if you disagree) so IMHO the best (and probably fastest) way to address this would be to work with the jqm team (or submit a pull request) to make jqm not add the extra 2 slashes to the URI.

[a] Chromium has a list of hardcoded "standard" schemes. These include http, https, ftp, etc. and it's essentially a list of schemes known to be compatible with the normalization algorithm.

Edit: unfortunately changing the targetSdkVersion won't help you in this case.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top