-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Add notice on v1 embedding removal to 3.29.0 breaking changes #11749
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
a8addc5
wip
5012267
finish todos
6909186
just say classes
610bcba
change title to match link on index.md
08b44e6
mostly conform to 80 char line breaks
f55219c
code block types
d78ceb2
its release/ not releases/
9574ce4
loics review
917067a
sort of conform again to 80 chars
43a4ed0
Merge branch 'main' into v1_embedding
parlough d308972
Minor formatting and wording cleanup
parlough 66f8909
Add timeline section for removal
parlough 1d82ef2
Split up the list items
parlough File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
src/content/release/breaking-changes/v1-android-embedding.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| --- | ||
| title: Android v1 embedding deletion | ||
| description: Deletion of the Android v1 embedding. | ||
| --- | ||
|
|
||
| ## Summary | ||
|
|
||
| The v1 embedding has been removed in Flutter 3.29.0. | ||
gmackall marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| This follows the deprecation described in //(TODO link). | ||
| The following is a full list of classes and packages removed, along with their replacements. | ||
gmackall marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ``` | ||
| io.flutter.app.FlutterActivity | ||
| io.flutter.app.FlutterActivityDelegate | ||
| io.flutter.app.FlutterActivityEvents | ||
| io.flutter.app.FlutterApplication | ||
| io.flutter.app.FlutterFragmentActivity | ||
| io.flutter.app.FlutterPlayStoreSplitApplication | ||
| io.flutter.app.FlutterPluginRegistry | ||
| io.flutter.embedding.engine.plugins.shim.ShimPluginRegistry | ||
| io.flutter.embedding.engine.plugins.shim.ShimRegistrar | ||
| io.flutter.view.FlutterMain | ||
| io.flutter.view.FlutterNativeView | ||
| io.flutter.view.FlutterView | ||
| ``` | ||
|
|
||
| If your project references any of the above classes, consult the following list for instructions on migration. | ||
|
|
||
| * `io.flutter.app.FlutterActivity` was replaced with `io.flutter.embedding.android.FlutterActivity`. | ||
|
||
| * `io.flutter.app.FlutterActivityDelegate` was replaced with `io.flutter.embedding.android.FlutterActivityAndFragmentDelegate`. | ||
| * `io.flutter.app.FlutterActivityEvents` was replaced with //TODO | ||
gmackall marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * `io.flutter.app.FlutterApplication` was removed. Flutter projects with custom `Application` implementations should instead extend the base `android.app.Application`. | ||
| * `io.flutter.app.FlutterFragmentActivity` was replaced with `io.flutter.embedding.android.FlutterFragmentActivity`. | ||
| * `io.flutter.app.FlutterPlayStoreSplitApplication` was replaced with `io.flutter.embedding.android.FlutterPlayStoreSplitApplication`. | ||
| * `io.flutter.app.FlutterPluginRegistry` //TODO | ||
gmackall marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * `io.flutter.embedding.engine.plugins.shim.ShimPluginRegistry` was removed, as it only served to support let plugins support apps using the v1 embedding. | ||
| * `io.flutter.embedding.engine.plugins.shim.ShimRegistrar` was removed, as it only served to support let plugins support apps using the v1 embedding. | ||
| * `io.flutter.view.FlutterMain` was replaced by `io.flutter.embedding.engine.loader.FlutterLoader`. | ||
| * `io.flutter.view.FlutterNativeView` was replaced by `io.flutter.embedding.android.FlutterView`. | ||
| * `io.flutter.view.FlutterView` was replaced by `io.flutter.embedding.android.FlutterView`. | ||
|
|
||
| ## Plugin authors | ||
|
|
||
| // TODO | ||
gmackall marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.