Questions tagged [ipa]

.ipa file type is an iPhone application archive file which stores an iPhone application.

Each .ipa file is compressed with a binary for the ARM architecture and can only be installed on an iPhone, iPod Touch, or iPad. Files with the .ipa extension can be uncompressed by changing the extension to .zip and unzipping.

.ipa files cannot be installed on the iPhone Simulator because they do not contain a binary for the x86 architecture. To run applications on the simulator, original project files which can be opened using the Xcode SDK are required. Occasionally, however, some .ipa files can be opened on the simulator by extracting and copying over the .app file found in the Payload folder.

1364 questions
161
votes
26 answers

Install .ipa to iPad with or without iTunes

I have the .ipa from PhoneGap build and I need to test it. I got provisioning profile from Developer account. So my question is: can I directly put my .ipa to iPad to install for testing, or do I have to follow some rules to install?
URAndroid
  • 6,177
  • 6
  • 30
  • 40
154
votes
12 answers

Re-sign IPA (iPhone)

I currently build all my applications with hudson using xcodebuild followed by a xcrun without any problems I've received a couple of IPA files from different people that I would like to re-sign with a enterprise account instead of the corporate…
Erik
  • 5,791
  • 5
  • 30
  • 45
154
votes
16 answers

Install IPA with iTunes 12

I have an IPA signed for ad-hoc distribution. I can install it fine with Flash Builder. I'd like to install a release version via iTunes 12, though. Dragging it onto: The device name The app section The app list The Home Screens section ...does…
Tometheus
  • 1,551
  • 2
  • 10
  • 3
140
votes
7 answers

How to fix Xcode 6.1 error while building IPA

Just upgraded to Xcode 6.1 today, and guess what: Now I'm having trouble submitting builds using the TestFlight desktop app. Here's the error I'm getting while the app starts building the IPA: error: /usr/bin/codesign --force …
Şafak Gezer
  • 3,928
  • 3
  • 47
  • 49
132
votes
13 answers

How to get .apk and .ipa file from flutter?

I am new to flutter programming and I've created a demo app, its running fine on both android and iOS devices. I want to see .apk and .ipa file in flutter. Can anyone help me to get these files from Flutter? Where can I see these files in folders or…
Ammy Kang
  • 11,283
  • 21
  • 46
  • 68
120
votes
9 answers

How to re-sign the ipa file?

How do I sign the .ipa file with a provisioning profile after I generate an IPA like the following with a different provision profile? I would like to sign the IPA with an ad-hoc provisioning profile for beta testing, and then re-sign the exact IPA…
Johnny
  • 1,483
  • 3
  • 13
  • 10
96
votes
13 answers

No signing certificate "iOS Distribution" found

I am trying to sign an app with my client's certificates. I have received the following file from the client I tried installing the ios_distribution certificate and the key (.p12). Also I have installed the provisioning profile. Now when I try to…
user3034944
  • 1,541
  • 2
  • 17
  • 35
69
votes
8 answers

--resource-rules has been deprecated in mac os x >= 10.10

I tried to resign my ipa file with new provisioning profile on Mac Os 10.10 with iResign app but I got this warning: "Warning: --resource-rules has been deprecated in Mac OS X >= 10.10". What should I do now?
hiennv92
  • 810
  • 1
  • 8
  • 12
65
votes
7 answers

How to tell what profile/signing certificate was used to sign .ipa?

I have a bunch of .ipa files and I've used a script to resign them. So how can check the provisioning profile/signing certificate to conform they are using the correct information? Ideally, I'd like to be able to take any .ipa file and tell which…
DBD
  • 23,075
  • 12
  • 60
  • 84
61
votes
8 answers

How to convert .xcarchive to .ipa for client to submit app to app store using Application Loader

We have created the .xcarchive file code signing with our client's certificate & distribution provisioning profile, but we need to send the .ipa file to our client so that they can upload the app to the App store using Application Loader. The only…
aobs
  • 1,063
  • 1
  • 11
  • 23
60
votes
5 answers

How can I deploy (create .ipa) iphone app using 'cordova build ios --release'?

I have created a 'helloworld' iOS app with cordova using there documentation. The app successfully runs when I run cordova emulate ios. What I can't do, is while deploying when I run cordova build --release. It doesn't create any .ipa files there.…
MD. Mohiuddin Ahmed
  • 2,092
  • 2
  • 26
  • 35
59
votes
3 answers

How to build .ipa for React Native?

I come to React Native development without previous experience in iOS development. I want to build release. .ipa file - ideally from the command line but the official documentation Running On Device is very brief. I was able to deploy applications…
sodik
  • 4,675
  • 2
  • 29
  • 47
57
votes
4 answers

Can I distribute my App for any device without UDID?

I've been searching stackoverflow, reading in the various blogs to get answer to my question "Can I distribute my app to someone, without getting his device UDID?" The answers I found is all about "NO! You must have the list of UDIDs" BUT, I've…
Almas Adilbek
  • 4,371
  • 10
  • 58
  • 97
56
votes
9 answers

Download and install an ipa from self hosted url on iOS

I need to download and install an ipa directly from an URL. I have tried this: NSURL *url = [NSURL URLWithString:@"https://myWeb.com/test.ipa"]; [[UIApplication sharedApplication] openURL:url]; The app launches Safari but then this message…
Andoxko
  • 1,021
  • 2
  • 12
  • 19
55
votes
10 answers

Code signing is required for product type 'Application' in SDK 'iOS5.1'

I am using xCode 4.3.1. After i created a project, i build it and tried to Archive. Then i got an error saying; (This is my first project in xCode 4.3.1) CodeSign error: code signing is required for product type 'Application' in SDK…
Illep
  • 16,375
  • 46
  • 171
  • 302
1
2 3
90 91