White screen after splashscreen, Ionic2, android device

后端 未结 4 2088
慢半拍i
慢半拍i 2020-12-05 17:31

I am currently developing Ionic2 app. I face a problem that after Splash screen, there is a white screen for 6-7 seconds, before app home screen.

I tried some googli

4条回答
  •  余生分开走
    2020-12-05 18:13

    Add the --prod flag during any of the following CLI commands:

    // If iOS
    ionic emulate ios --prod
    ionic build ios --prod
    ionic run ios --prod
    
    
    // If Android
    ionic emulate android --prod
    ionic build android --prod
    ionic run android --prod
    

    More info of build (prepare + compile) an Ionic project for a given platform https://ionicframework.com/docs/cli/cordova/build/

提交回复
热议问题