Search code examples
flutterdartflutter-desktop

Flutter macOS Desktop project release artifact location


I want to build a macOS app from the Flutter project. I can build it and run fine from Android Studio and command line using the following command:

flutter build macos
flutter run -d macos

The documentation says the '.app' file is self-contained and can be distributed as it. However, it doesn't say where it's generated. Do you know how to locate the '.app' artifact for macOS?


Solution

  • mine was in build/macos/Build/Products/Release/$APPNAME.app

    And yes, it seems to be entirely self-contained and distributable.