Does the new Android WebView perform the same as CrossWalk WebView

I found some information about the performance difference of android webview and clean cordova install here in this answer (I think this will be the most relevant for you) : Is there any real benefit using crosswalk for Android 4.4 & above?

Also while choosing you will maybe like to look at what extra HTML5 features are provided by crosswalk above 4.4 devices as in android webview above kitkat some features are disabled Resource : Why do I need Crosswalk now that Android (KitKat and later) has a Chrome-based webview? question in https://crosswalk-project.org/documentation/about/faq.html


From Wikipedia

Crosswalk built with the latest releases of Chromium and Blink from Google. These are also used in Google Chrome.

There are some points you can consider:

  • Chrome for Android is separate from WebView. They're both based on the same code, including a common JavaScript engine and rendering engine.
  • Crosswalk is a chromium web runtime that can be packaged with the app.

    Default webview doesn't support WebRTC audio/video feature but crosswalk does.

  • You can debug your crossview packaged project but can not for webview.

  • Crosswalk supports:

    • Icon fonts, SVG, Flexbox, and more
    • New monitoring APIs
    • File System API

Now a days most of the devices have at least Kitkat, so performance shouldn't be the issue.

If you are building a HTML5 game or want to use WebRTC for audio/audio calling you can go for crosswalk but you don't need to integrate crosswalk if you want to use basic web functionalities.

For more information Does the new WebView have feature parity with Chrome for Android? and Old WebView vs. Chromium backed WebView Benchmark