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:
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:
Time to initial display
In Android 4.4 (API level 19) and higher, logcat includes an output line containing a value called Displayed. This value represents the amount of time elapsed between launching the process and finishing drawing the corresponding activity on the screen. The elapsed time encompasses the following sequence of events:
The reported log line looks similar to the following example:
- Launch the process.
- Initialize the objects.
- Create and initialize the activity.
- Inflate the layout.
- Draw your application for the first time.
ActivityManager: Displayed com.android.myexample/.StartupTiming: +3s534ms
Android vitals
Android vitals can help improve your app's performance by alerting you, via the Play Console, when your app's startup times are excessive. Android vitals considers your app's startup times excessive when the app's:
Last edited: