I am building an app and making an ipa file but is not ceated .I have xcode version 3.2.6 and followed the steps necessary to make the ipa file.But no hope . i and archived the application and opened it in organizer then distribute it but it does not show any alert that ipa file is creating.
Asked
Active
Viewed 1.1k times
-2
-
2Please make this into a question and give more specifics – Otium May 22 '12 at 04:39
-
@Otium i have given more detail you can see – user1397714 May 22 '12 at 04:46
-
While creating build,do you select iOS device in scheme? try to clean,build and then archive. – Yama May 22 '12 at 04:48
-
@Sarah yes i am selecting device but my xcode version is 3.2.6 – user1397714 May 22 '12 at 04:54
2 Answers
5
Steps to make .ipa file
- First Clean the project(Command+Shift+K)
- Build the project(cammand + B) and/or Run the project(Command + R) (Make Sure to make Release build)
- Under project Navigator, go to Product/ProjectName.app
- Right click on ProjectName.app file and select "show in Finder "
- Copy the ProjectName.app file
- Create a new folder and paste the ProjectName.app file
- Compress the folder and name it ProjectName.ipa and remove the .zip extension.
- A pop will come to ask you for using .ipa extension, select "use .ipa" and press Enter.
Now your .ipa file is ready to use, You can drag and drop it to the iTunes and use it in a Testing device by syncing the device with the particular iTunes.

Khushbu Patel
- 158
- 1
- 7
-
-
-
I had this problem when i was creating distribution build, but when i run the .ipa file second time it was running perfectly. – Khushbu Patel May 22 '12 at 05:55
-
There was a problem in Distribution profile and we created another distribution profile and it was running perfactly – Khushbu Patel May 22 '12 at 05:57
-
mean i have created a new provisioning profile with Device ID and may i also create another distribution profile and also download it – user1397714 May 22 '12 at 06:02
-
i have download both distribution and provisioning profiles both for to run this on device – user1397714 May 22 '12 at 06:06
-
@KhushbuPatel Hi, Khushbu, i tried your way, but it doesn't work for me, in my app under project navigator the .app file does not have show in finder option enabled. In my xcode i have installed profiles many time every time it say invalid profile, but in other system same created profile works fine. What could be wrong here, Can you please guide for that. Thanks. – iPhone Programmatically Apr 10 '13 at 14:18
0
Create a folder and drag, drop .app and provisionaing profile into that folder. Compress it. Replace .zip extension with .ipa. Thats it.

Dee
- 1,887
- 19
- 47
-
while creating profile you have to give description as "com.yourcompanyname.appname". You need to set the same value for Bundle Identifier in your info plist file. Then generate build. – Dee May 22 '12 at 05:40