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
29
votes
5 answers

Is there a way to see what UDID are included in a build?

I am looking for a way to validate an IPA or mobileprovision file, to see if all my test devices have been added before i distribute the app for beta-testing.
Lohardt
  • 1,057
  • 1
  • 12
  • 26
27
votes
2 answers

Archive in xcode 6 is producing a pkg, not ipa

Recently updated to Xcode 6 and now whenever I archive a project, I get a .pkg instead of an .ipa. I've set the other target in my project (cocoapods) to skip install but that didn't do the trick. The deployment target is iOS, not mac (it's an…
maxhs
  • 868
  • 2
  • 10
  • 14
26
votes
2 answers

Change app Version with only IPA file provided (no xcode)

I have an app that was developed for my company. Unfortunately it needs to be resigned (i know how do this part) because the distribution cert has expired. The problem is we need to change the version number so it allows for an update on all iPads.…
user2461863
  • 371
  • 1
  • 3
  • 5
26
votes
6 answers

Create .ipa for iPhone

I developed one application for iPhone. After I build I got .app file in build folder. My application name is Myapp, then i got Myapp.app file in the build folder. My problem is i want to create the .ipa file. how is that.. it is for to install…
jalju
23
votes
4 answers

Edit ipa plist file in command line

I'd like to change the 'bundle-identifier' string value in a plist file using the command line. Using 'defaults', how would I do this? FYI here is the plist in its entirety:
kevmalek
  • 1,373
  • 2
  • 12
  • 13
23
votes
7 answers

Download IPA / APK from Crashlytics

I'm using Crashlytics to distribute an app for Beta testing. While it is easy and convenient to install the app on devices from the Crashlytics app, I have not been able to figure out how I could download only the IPA from the Crashlytics server. …
dogsgod
  • 6,267
  • 6
  • 25
  • 53
22
votes
1 answer

Fastlane : [altool] Error: Unable to upload archive. Failed to get authorization for username and password

I try to upload my flutter ipa to the AppStore with fastlane using pilot with the following command: bundle exec fastlane pilot upload --ipa ../build/ios/ipa/project.ipa When I run this command I face the following error I have a .p8 in the…
Liam
  • 469
  • 1
  • 6
  • 16
22
votes
4 answers

Uploading flutter app to AppStore gives App.framework does not support the minimum OS Version specified in the Info.plist

I have successfully generated .ipa for app store connect but when Uploading to App Store Connect from XCode in the validation phase I am getting this error ERROR ITMS-90208: "Invalid Bundle. The bundle myApp.app/Frameworks/App.framework does not…
Pushprajsinh Chudasama
  • 7,772
  • 4
  • 20
  • 43
22
votes
2 answers

Specify location for ipa file in Xcode 7 Ad-Hoc release

UPDATE: This issue is still present in Xcode 7.1 beta 2. Looks like this will be here a while. I just updated to Xcode 7 GM and am in the process of generating ad-hoc archives for various builds. However, it does not appear that you can specify the…
Dan Nichols
  • 769
  • 1
  • 7
  • 19
21
votes
1 answer

Retrieve certificate expiration date from an .ipa file?

I know how to view the expiration date of an .ipa file's provisioning profile (by renaming the ipa to zip, then unzip it and view the ExpirationDate key in the embedded.mobileprovisioning file). But how can I view the expiration date of the…
Strille
  • 5,741
  • 2
  • 26
  • 40
21
votes
3 answers

ERROR ITMS-90086 submitting app

I need to submit my app and I retrieve this error: and the configuration is on 64 bits: I don't know how to do... thanks in advance
ghiboz
  • 7,863
  • 21
  • 85
  • 131
19
votes
3 answers

Generating ipa from xcode command-line

Whats the best approach for generating an IPA file from command-line? I'm on xcode 4.2 and generating the archive using: xcodebuild -scheme AppStore clean archive This generates the .dSYM and .app files in the build output directory, after…
Vasanth
  • 193
  • 1
  • 1
  • 5
19
votes
3 answers

ios 8 openUrl itms-services does not exit current app

In iOS 6 or 7, the app exit to the home screen when I call UIApplication openUrl with a url of itms-services://XXXX to install a new version of my app (using enterprise deployment with ipa files). In iOS 8, this is no longer the case. Now the app…
Andreas Paulsson
  • 7,745
  • 3
  • 25
  • 31
17
votes
7 answers

Xcode 6 GM creating archive

I am attempting to create an archive .ipa for distribution via testflight. The archive creates, and I choose export, then choose ad hoc, then select my team. However, at this point I get the below screen. I know that my certificate is valid, as I…
steventnorris
  • 5,656
  • 23
  • 93
  • 174
17
votes
3 answers

xcode 5 archive build fail, but normal build successfully

I can build and run my app on my device, but when I tried to build archive, I got many errors. The errors are about my 3rd library - google protobuf. It showed that #error Host architecture was not detected as supported by protobuf. But what is the…
Arton
  • 443
  • 1
  • 6
  • 15
1 2
3
90 91