Home > database >  Is there any way to identify unused asssets(images, files) in a flutter project?
Is there any way to identify unused asssets(images, files) in a flutter project?

Time:10-18

I was developing a flutter application. So I had to delete unused assets used in the project(mainly images) to reduce app size. How can we achieve this in a better way?

CodePudding user response:

Check out this tutorial by the Flutter team for information on how to reduce app size.

CodePudding user response:

you can try delete unused packages and it wuold be good too for size app. when you run "flutter build apk" or "flutter build apk--release" app size very high when you try run this flutter build apk --split-per-abi app size will be reduced by architechture of processor.When you upload your project to store it will be required appbundle that why when you download app really from store it wuold show to reduced size app that's why dont worry

  • Related