This repository was archived by the owner on Feb 25, 2025. It is now read-only.
[Android] Fix initial route when app launched by deeplink and not in background #40119
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds an additional push of the initial route to the framework once the first Flutter frame has been rendered if it has not already been pushed.
This will catch the case of an app being launched by a deeplink that was not previously in the background, because when the app is not previously in the background, no call to push the correct initial route is currently being made and we must wait to push it after the
FlutterActivityhas been created, started, and resumed (in terms of theActivitylifecycle).Fixes flutter/flutter#121244.
Pre-launch Checklist
///).