Reputation: 2920
I am using nativescript starter app with angular.
It is the barebones starter app that is created by the cli.
what I want to know is that how can I change the splash screen time for the app.
I went through the docs here https://github.com/NativeScript/docs/blob/master/publishing/creating-launch-screens-android.md
But was unable to find any mention of splash screen time.
Upvotes: 0
Views: 1394
Reputation: 1486
You need to first understand that the initial image will display only for as long as it takes for the app to load initially. Having said that,you can neither shorten the time (unless you optimize the application - load resources lazily for example), nor extend it naturally.
Beginning with NativeScript 2.4 android apps will be created with snapshots enabled by default. That means shorter initial loading times.
That should be a very noticeable improvement for new apps, especially those written in Angular2
Upvotes: 2