How Clean Flutter/bin folder cache
Asked Answered
A

2

5

Is there any way to clean up flutter/bin folder cache? or older app release apk without opening an individual app and writing the command flutter build clean?

I just want to free up space from the flutter folder.

enter image description here

Abortive answered 3/6, 2022 at 11:33 Comment(0)
F
8

You can run rm -rf ~/flutter/bin/cache in the terminal to clear the Flutter bin cache.

Fubsy answered 3/8, 2022 at 15:40 Comment(2)
does it affect flutter performance?Abortive
Only in the first run. Not in the performance of the Flutter app, but in its build time.Fubsy
T
2

Doesn this command perform the cleaning you desire?

$ dart pub cache clean
Thoria answered 3/6, 2022 at 12:40 Comment(2)
No it's just remove cache at USER/USER_NAME/.pub-cache.Abortive
Still Flutter/bin folder size is 2.5 GBAbortive

© 2022 - 2024 — McMap. All rights reserved.