Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Package : Uncompressed package archive is too large

I am trying to upload my Flutter package to pub.dev. Dry Run work fine no error shown. But When I upload the same package to pub.dev, upload fails with "Uncompressed package archive is too large(size > 104857600).

Any suggestion/solution how to get over it?

like image 502
Amit Kalghatgi Avatar asked Sep 06 '25 03:09

Amit Kalghatgi


1 Answers

I had this issue recently on updating one of my plugin package. All old versions uploaded properly but this one didnt and there were only minor changes. After some research I found that it was App.framework and Flutter.framework in the examples folder causing the issue. I then ran flutter clean in examples folder and that was it, upload worked. Phew!!

like image 165
anoop4real Avatar answered Sep 07 '25 20:09

anoop4real