-
Notifications
You must be signed in to change notification settings - Fork 6k
Android change to match the Google internal changes. #17331
Conversation
| 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" |
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.
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).
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.
| eventDelegate.onPostResume(); | ||
| } | ||
|
|
||
| // @Override - added in API level 23 |
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.
| "Could not read meta-data for FlutterFragmentActivity. Using the launch theme as normal" | ||
| + " theme."); | ||
| } | ||
| } |
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.
There must be a similar change here as well for calling super. Check around line 490.
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. Sorry somehow I missed this.
This is to match the Google internal changes, so the flutter/flutter can build correctly internally.