Android Question App Launch Times

tufanv

Expert
Licensed User
Longtime User
Hello,

Google play will be using a new algo to list the app standings in google play store. One of the most important thing with the new standings is the app launch times:

See details here : https://developer.android.com/topic/performance/vitals/launch-time

My question is , 2 of my apps out of 3 is over the median by around %15 which is an enormous difference. What can be done or what should be avoided to decrease the cold startup, warm startup or hot startup ? For example, is the layout file mostly affects the load time or the things done in activity-create sub?

We need some tips about this. This will be an important thing in the standings.

Another question: Any way to calculate the load time? I read that:


 
Last edited:

Peter Simpson

Expert
Licensed User
Longtime User
You should optimise your starting procedures as much as possible and only loads what is actually needed at the beginning and nothing else.

Arey your apps receiving external data from the internet?

I presume that there are plenty of ways to cut down what is happening in the main activity from a child start. You can accurately calculate load times by simply using a start/stop time (deduct the start time from the syop time and you have your load time).
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…