3

I'm trying to find out how generate the .ipa file in flutter in android studio on MacOS

Midhun MP
  • 103,496
  • 31
  • 153
  • 200
shubham
  • 31
  • 1
  • 1
  • 4

2 Answers2

3

Step 1: open terminal and type cd "your flutter sdk path"

Step 2: cd export PATH=/Users/yourname/Downloads/flutter/bin:$PATH

Step 3: cd your project path

Step 4: flutter build ios --release

run step 1 to 4 in terminal.

After that open android studio and go to iOS folder path and open project.pbxproj file with ios module and in xcode you need to choose generic ios device and select archive, it will generate ipa build for you.

yug k
  • 349
  • 4
  • 9
1

You need Xcode to generate .ipa file.

https://flutter.dev/docs/deployment/ios

Rubens Melo
  • 3,111
  • 15
  • 23