How to clear Flutter's Build cache?

Solution 1:

You can run flutter clean.

But that's most likely a problem with your IDE or similar, as flutter run creates a brand new apk. And hot reload push only modifications.

Try running your app using the command line flutter run and then press r or R for respectively hot-reload and full-reload.

Solution 2:

If in android studio Tools->Flutter->Clean

enter image description here