Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make an ipa file?

Tags:

xcode

iphone

How can I create a ipa file for my iOS application?

I have written the complete code for my iPhone app and now I'd like to make .ipa file.

like image 326
Veer Avatar asked Jan 17 '11 09:01

Veer


People also ask

Can we generate IPA file in Windows?

You cannot. You will need a xcode and mac for that.

What kind of file is an IPA?

In simple words, it is a file that can be installed on iOS devices and used as an application. Just like an APK (Android Application Package) file can be installed on Android devices, an IPA file can be used for testing iOS applications. You can even push it to the app stores to publish your app.


2 Answers

  • Within XCode choose Build > Build & Archive.
  • In your XCode Organizer (Window > Organizer), you'll see your archived apps
  • Select one, hit 'Share...' and 'Save to Disk'
like image 196
henklein Avatar answered Sep 29 '22 07:09

henklein


The one suggested by @heinklein is the easiest way but another option is to do the following.

  1. Add necessary profiles and adjust build settings.
  2. Set device as target to run the application.
  3. Build the product.
  4. Go to Products->yourAppName.app. Right click and show in finder.
  5. Drag & drop to itunes profile and binary file.
  6. Select app in iTunes and right click to show in Finder. And there you can get the .ipa file.
like image 20
visakh7 Avatar answered Sep 29 '22 08:09

visakh7