Reputation: 3157
When I run flutter build apk --split-per-abi
I get three apks twice: once under the directory build/app/outputs/apk/release and once under build/app/outputs/flutter-apk. What is the difference between these two directories?
Upvotes: 23
Views: 4849
Reputation: 1424
They are the same. Old version of flutter use outputs/apk/release
directory but they changed it to outputs/flutter-apk
recently. The old directory is kept for compatibility with other building tools.
Upvotes: 41