Reputation: 484
I have an Android app developed by Flutter.
Question
Can I reduce the size of the ram through the app bundle?
If not, plan to support the app bundle?
Upvotes: 3
Views: 4048
Reputation: 6033
Unfortunately there is no integration for Android App Bundle (aab) in Flutter yet. But it is a requested feature, so we might see it sooner or later. You can find more information regarding that in the GitHub issue 17829.
Also you can find requested features in the GitHub repo under milestones. The current milestones can be found under milestone #22.
EDIT 19/3/2: Android App Bundle is now available with the latest commit. You may need to update to the master branch to use it.
Upvotes: 1