user18597024
user18597024

Reputation:

How to delete debug apk in flutter project?

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.

Upvotes: 0

Views: 1096

Answers (3)

Pratik Lakhani
Pratik Lakhani

Reputation: 343

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.

Upvotes: 0

MANISH
MANISH

Reputation: 3348

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

Upvotes: 1

Developer
Developer

Reputation: 640

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

Upvotes: 2

Related Questions