I have found an easy way to reduce the app size in Flutter as most developers have the same problem while creating a build .apk or .aab file. I am wor

Easiest Way to Reduce App Size in Flutter Apps - Volume 1

submited by
Style Pass
2024-09-29 07:00:03

I have found an easy way to reduce the app size in Flutter as most developers have the same problem while creating a build .apk or .aab file.

I am working in a code base where around 20 developers work on the same project and every single person has their module to work with. As we continued working, the code base grew larger and larger.

At one point I noticed where I was sharing a build with my tester that the size of my Flutter app crossed 285 MB. This made me realize that we need to address this issue sooner rather than later.

I then started my research on how to reduce app size and found some useful articles. One of them was about optimizing your Flutter app: “Pushing Flutter to the Limit: The Ultimate Guide to Reducing Flutter App Size”

This article though is not about optimizing your app. It’s about removing the resources dependencies and files which you have not put to use and are contributing to just increasing the file size of your application.

Leave a Comment