Home > Net >  How to delete debug apk in flutter project?
How to delete debug apk in flutter project?

Time:03-27

How to delete debug apk in flutter project ? I want to delete all debug apks of flutter projects using terminal How can I do this.

CodePudding user response:

run flutter clean in your terminal and dont forget to run flutter pub get after this.

CodePudding user response:

In your terminal hit flutter clean command , after that hit flutter pub get. Your all apk's will be delete.

  • Related