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

1,450

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.

Share:
1,450
Norman
Author by

Norman

Exploring App Development (Flutter, Android)

Updated on December 22, 2022

Comments

  • Norman
    Norman over 1 year

    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?