Search code examples
iosflutter

How to create .ipa file for testing using Runner.app?


I am android developer learning Flutter, and I really have some trouble trying to create debug .ipa file, for testing purposes.

So, I managed to create Runner.app file using command from Terminal:

flutter build ios --debug

The location of Runner.app file is

my_project_folder/build/ios/iphoneos/Runner.app

What to do next? Also, is there a way to create debug .ipa file from Xcode? Thanks.


Solution

  • flutter build ipa is now available and takes an optional --export-options-plist flag to make an IPA from the archive bundle. See flutter build ipa -h on the master channel for details.