Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create ipa file in flutter for testing purpose?

I am working in flutter and i want to create an ipa file for testing purpose. Is there any way to create ipa directly from android studio terminal? If there,what are the steps to follow in that. Also i have created through diawi, but showing error in installing the app through the url provided by diawi.

Please give me a step by step procedure to follow.

like image 574
Sana Afreen Avatar asked Feb 02 '26 11:02

Sana Afreen


2 Answers

For making a build for iOS, you need to run following command from android studio terminal:

flutter build ios --release

Now you have to make build from Xcode by configuring correct certificates and provisioning profiles:

Go to Xcode > Select Generic Device in Devices Pan
Then from the Window menu Choose Product > Archive

EDIT: How to get the build?

After clicking on archive, It will take some time to get binaries bind into build and after that it will give you some options to add preferable provisioning profiles. After completing all the process you get an option to download build. Just choose your preferred location to download and it will be downloaded. Open the downloaded folder and get your ipa.

like image 110
Shivam Tiwari Avatar answered Feb 05 '26 02:02

Shivam Tiwari


None of the above worked for me so this is what I did:

  1. Run: flutter build ios --release
  2. Go to Xcode -> select Any iOS Device
  3. Select product -> archive
  4. Once done, In the popup dialog, select distribute then select Adhoc (Install on designated devices) then click next
  5. On the next page, select none for app thinning then click next
  6. Select automatically manage signing then click next or manually manage signing if you want to change the provisioning profile then, click next
  7. Click export, then select the desired location you want to save the ipa then click export.
  8. Once done, where you exported to should have the ipa. You can upload this ipa to firebase app distribution or where neccessary.
like image 25
nivla360 Avatar answered Feb 05 '26 02:02

nivla360



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!