Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -891,9 +891,13 @@ migrate it to UIKit's scene-based lifecycle as follows:

This change is required due to UIScene changing the app launch
sequence. For apps that adopt `UIScene`, Flutter calls
`application:willFinishLaunchingWithOptions:` and
plugin's `application:willFinishLaunchingWithOptions:` and
`application:didFinishLaunchingWithOptions:` during the
`scene:willConnectToSession:options:` callback.
`scene:willConnectToSession:options:` callback, after UIKit's
`application:didFinishLaunchingWithOptions:` returns.

Plugin registration methods are also deferred until after UIKit's
`application:didFinishLaunchingWithOptions:` returns.

1. Migrate other deprecated APIs to properly
access the `viewController`, `screen`, or `window`.
Expand Down
Loading