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.
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.
You can run rm -rf ~/flutter/bin/cache
in the terminal to clear the Flutter bin cache.
Doesn this command perform the cleaning you desire?
$ dart pub cache clean
© 2022 - 2024 — McMap. All rights reserved.