hi brother , how do you do today,
i have been build my app in ionic and it work properly but i needs to remove the delay in launching my app it takes a long time to do that , so that i want to get your advices to solve this issues
my app in google play is her : https://play.google.com/store/apps/details?id=com.gridsapps.ishop
and you can see where is the delay time in begin
Did you used ionic cordova build android --release --prod?
and white screen will can be removed by changing in config.xml file:
<preference name="SplashScreenDelay" value="3000" />
Replace this with
<preference name="SplashScreenDelay" value="0" />
Hope this will solve your issue.
no , am building my apk from android studio
https://ionicframework.com/docs/v1/guide/publishing.html
Check out this for further help
i know how to build that app , but the problem in delay , i must resolve it
Delay problem is as app is not being build in production mode --prod and in config.xml file of ionic update <preference name="SplashScreenDelay" value="0" />.
yes i have been change my SplashScreenDelay" to value=“0”
but still the same issues
You need to build the app using ionic cordova build android --release --prod NOT from android studio
i did its the same result
To me it looks like an error in your code. Usually an Ionic App takes between 3 to 5 seconds to launch (when you manually dismiss the splash screen) if your app is taking more I am 100% sure you are waiting for something (like your server or something similar) and that takes too much time.
ok , can i send you the code to check it as well