Kindly log in to use this feature. We’ll take you to the login page automatically.
LoginGeneral Tech Bugs & Fixes 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
My advices for you is to
ionViewDidLoad if it's possible ofc.Build and run your app using the prod and release mode, you will notice the difference (by adding --prod and --release)
Note:the release build may not work for you, for android you need to install the app from the google play store.
Also try to optimise all the parts of your app, pictures, any media that you are using.
updating the plugins will enhance the performance as well (because there is always bugs fixing and code optimisations in the new versions).
I believe if you applied all the above advices, the loading time will be decreased significantly as well as the app's performance.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Kindly log in to use this feature. We’ll take you to the login page automatically.
LoginReady to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
I want to improve my Ionic 4 application load time. It is taking time 6 seconds for app loading. my config.xml file is given below
these plugins that i am using into my application which is given below
"cordova": { "plugins": { "cordova-wheel-selector-plugin": {}, "cordova-plugin-whitelist": {}, "cordova-plugin-statusbar": {}, "cordova-plugin-device": {}, "cordova-plugin-splashscreen": {}, "cordova-plugin-ionic-webview": { "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+" }, "cordova-plugin-ionic-keyboard": {}, "cordova-sqlite-storage": {}, "cordova-plugin-x-toast": {}, "uk.co.workingedge.cordova.plugin.sqliteporter": {}, "cordova-plugin-advanced-http": {}, "cordova-plugin-screen-orientation": {}, "cordova-plugin-google-analytics": { "GMS_VERSION": "11.0.1" }, "cordova-plugin-apprate": {}, "cordova-fabric-plugin": { "FABRIC_API_KEY": "XXX", "FABRIC_API_SECRET": "XXX" }, "cordova-plugin-local-notification": {}, "cordova-plugin-background-mode": {} }, "platforms": [ "browser", "ios", "android" ] }please help me to solve it