Default WebViews
The default Cordova WebViews are not always the most performant option. Corber initializes your platform with the most performant web view if you add platforms with the corber platform add
command.
For iOS
In iOS, corber platform add ios
will initialize a WKWebView on your behalf, vs a UIWebView.
The UIWebView has been a class since iOS 2, whereas WKWebView was introduced in iOS 8. It includes the modern iOS WebView API’s and considerable performance improvements for JavaScript applications.
If you would instead like to initialize with a UIWebView, run corber platform add ios --uiwebview
.
For Android
By default the standard Android WebView is used.
On Android 7 and later, the Android WebView is automatically linked to Chrome and kept up-to-date.
A now deprecated option to use the crosswalk webview still exist. But since Crosswalk itself is sunset, and newer versions of Android will auto-update the webview, we no longer recommend using it.
If you still want to use the crosswalk webview, run corber platform add android --crosswalk
.