Norman
Norman

Reputation: 3157

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

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

Answers (1)

Pegasis
Pegasis

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

Related Questions