Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
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.
In your terminal hit flutter clean command , after that hit flutter pub get. Your all apk's will be delete.
flutter clean
flutter pub get
Add a comment
run flutter clean in your terminal and dont forget to run flutter pub get after this.
You can empty the entire project's cache to reclaim extra disk space or remove problematic packages and debug APKs.
Run flutter pub cache clean in the terminal at the project directory, and don't forget to run flutter pub get afterward.
flutter pub cache clean
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.