Reputation: 714
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
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