-
Notifications
You must be signed in to change notification settings - Fork 6k
Android change to match the Google internal changes. #17331
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -293,7 +293,8 @@ private void switchLaunchThemeForNormalTheme() { | |
| } catch (PackageManager.NameNotFoundException exception) { | ||
| Log.e( | ||
| TAG, | ||
| "Could not read meta-data for FlutterFragmentActivity. Using the launch theme as normal theme."); | ||
| "Could not read meta-data for FlutterFragmentActivity. Using the launch theme as normal" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can revert this. Totally unnecessary; the internal tooling for some reason made this change. It should be reverted in google3 as well (which will happen automatically with the roll).
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
| + " theme."); | ||
| } | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There must be a similar change here as well for calling super. Check around line 490.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. Sorry somehow I missed this. |
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we can also remove this comment because this is now using androidx support library so it should not matter when the API was added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.