Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate .ipa from .app file in Xcode 9

I am using Xcode 9. I did archive the build and got in to archive window/organiser window. From there we usually export the build. But due to some reason I cant do that.

On the prior version of Xcode, we can get into package contents and generate .ipa from .app with the help of iTunes. But now they have removed that option. Can someone help me to generate .ipa from the .app file that we have generated?

like image 811
Wodjefer Avatar asked Sep 27 '17 22:09

Wodjefer


People also ask

How do I get IPA from Xcarchive?

Now you have to do below steps: Go to Window->Organiser->Archives Here, select your archive fine and click on "Distribute App" button on right side Then Instead of upload, select Export option, and continue selecting default options, it will end you up with generating ipa file.

Can you use TestFlight to run an IPA file as an app?

TestFlight essentially allows you to install and run an IPA build on your iOS device. You essentially need to invite users to your App Store Connect account as internal testers.


1 Answers

The earlier way of dragging and dropping the app file to iTunes does not work anymore.

So we can use the organizer to create .ipa file in Xcode 9.

  1. Create an archive of your project.
  2. Then in organizer window select the archive and click on the export option.
  3. Then select a method of distribution in next dialog box(I had selected development distribution).
  4. Then the archive is prepared and development distribution options are presented. You can select any App thinning option or leave it as none and select or deselect other options and then click Next.
  5. Then you will be prompted to select the appropriate development certificate and mobile provisioning profiles. After selecting, click Next.
  6. Then archive will be built for distribution and you will be asked to review your applications .ipa content.
  7. If everything is alright, click on the Export option in the dialog box.
  8. You will be presented with another dialog box for entering the export name and location.
  9. Enter the export folder name and select a location and then click on Export. Your .ipa file will be exported to the location which you had selected.

For more information/help regarding this way of .ipa file generation, refer to https://wiki.genexus.com/commwiki/servlet/wiki?34616,HowTo%3A+Create+an+.ipa+file+from+XCode

Also this link should help -- How to create .ipa file using Xcode?

like image 98
Sharath Kumar Avatar answered Oct 02 '22 10:10

Sharath Kumar