ezaspi
ezaspi

Reputation: 714

What is difference between app.apk and app-release.apk

After running flutter clean and flutter build apk --release I have two apks in build/app/outputs/flutter-apk. app.apk and app-release.apk. What are their differences as I see both have the exact same size?

Upvotes: 10

Views: 1872

Answers (1)

Mike
Mike

Reputation: 499

I think nothing. app.apk can be equal to app-release if your last build was --release, otherwise app-debug if your last build was --debug.

Upvotes: 5

Related Questions