Flutter: What is the difference between the apk/release directory and flutter-apk directory under build/app/outputs?

Viewed 2102

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?

1 Answers

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.

Related