C.Noah
C.Noah

Reputation: 11

ionic4 doesn't support android 5

When the android platform is added, cordova-plugin-ionic-webview will be added by default. Packaging and installing on mobile phones is black screen, because this plugin does not support android 5. Uninstall the plugin, go to install, white screen. cordova-plugin-ionic-webview required for ionic4 ?

Upvotes: 1

Views: 91

Answers (1)

paulsm4
paulsm4

Reputation: 121799

The basic problem is that Android 5 and lower don't support ES6:

You can find more details, and several options here:

https://github.com/ionic-team/ionic/issues/15438

If you really need to support Android5, perhaps your best bet might be to use Crosswalk:

https://crosswalk-project.org/documentation/cordova.html

You can see the relative usage for different Android versions on Google's Distribution Dashboard:

enter image description here

Upvotes: 2

Related Questions