- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I ran into some issues when trying out an app built with the app framework.
- Interactive SVG with D3.js doesn't appear at all, or appear corrupt on old devices. Got it working on Android 5.1.1.
- Object Map does not seem to be supported for older devices with Cordova. (Added my own function below).
function Map() { var data = {}; this.set = function(key,value) { data[key] = value; }; this.get = function(key) { return data[key]; }; this.has = function(key){ return !!data[key]; }; this.del = function(key){ return delete data[key]; }; }
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is one of the reasons we provide Crosswalk as an alternative for the Android native webview. Please see these articles:
- https://software.intel.com/en-us/xdk/docs/why-use-crosswalk-for-android-builds
- http://blogs.intel.com/evangelists/2014/09/02/html5-web-app-webview-app/
- http://blogs.intel.com/evangelists/2015/08/30/improving-android-4-x-performance-with-crosswalk/
Choose Crosswalk as your target build, not Android. And use the Debug tab (which runs on top of Crosswalk).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the information Paul.
My current problem with Crosswalk is that some of my plugins fail silently, I guess it's the lesser of two evils at this point.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Lutze - be sure you are using the correct plugin versions for the CLI version you are using.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Lutze -- the way we build Crosswalk apps changes dramatically with the release that is coming out today. Please try again with this new release, it should fix most of the plugin issues you're having with the current Crosswalk build system.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page