I building an app with ionic 3.
I have installed crosswalk, and enabled production mode in angular
import { enableProdMode } from ‘@angular/core’;
enableProdMode();
Also I ran the app with the following command
ionic cordova run android --prod
Performance in android versions 4.4.4 and above is good.
But in android versions 4.4.2 and below it is still very slow, PRACTICALLY UNUSABLE, even after installing crosswalk.
Is there anything else that I need to do to improve performance in android versions 4.4.2 and below.
Here is my output of ionic info:
@ionic/cli-utils : 1.9.2
ionic (Ionic CLI) : 3.9.2
global packages:
Cordova CLI : 7.0.1
local packages:
@ionic/app-scripts : 2.0.2
Cordova Platforms : android 6.2.3 browser 4.1.0
Ionic Framework : ionic-angular 3.5.3
System:
Node : v6.11.0
npm : 3.10.10
OS : Windows 10
PLEASE HELP