-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API 34 calls first post before activity is created #63
Comments
one note I want to mention here: in my internal tests with few devices I used
this looks like is working fine apart that pre 34 chained activity launches are all called before the firstIdle, when from 34 idle is called after the first activity launched. |
Thanks, this is definitely worth looking into. I wonder what changed. |
One thing I've noticed on my Pixel 7 Pro (API 34): after I manually kill the app, android starts the process again in background. Here's the logcat:
|
Hi, could you tell please, did you make some investigation of it? |
Running Papa sample app I have noticed that on API 34
preLaunchState
was always warm (preLaunchState=NO_ACTIVITY_NO_SAVED_STATE(WARM)
). Adding some debugging log I notice that the recording of the first post on main thread is called before therecordActivityCreated
is called.This makes the calculation in
computePreLaunchState
never detect a cold state.Here are the logs I captured force-closing the application.
API 31
API 34
is this a known issue or I am reading this wrong?
The text was updated successfully, but these errors were encountered: