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
-1
votes
1 answer

Does the app DB get replaced on adding a new build in the iPAD

I have installed my app in my iPad. My app has a sqlite DB. Now if i add another build ipa to the ipad... does the App DB get replaced ? or is it necessary to delete the prev app and then install the new build ? There is no versioning check of the…
MainakChoudhury
  • 502
  • 1
  • 7
  • 23
-1
votes
1 answer

I made an android app using flutter, is there a way to build an IPA from the same code?

So I built an android app using flutter on Android studio but I see that in order to build an IPA I need to use Xcode on a MAC device so I was really wondering what to do to transfer the flutter app to Xcode? or do I need to rewrite the whole code…
Geo
  • 11
  • 2
-1
votes
1 answer

How to sign ipa after patch?

I using MachoProtector https://github.com/pandazheng/MachOProtecter to remove some code from header, it work, but when re-sign, any tool cant sign it again. Any suggestion?? Thanks
lion99
  • 1
  • 1
-1
votes
2 answers

MYSQL + PHP trying to insert IPA characters

I'm having an issue inserting phonetic pronunciations into my database. Here's some images showing what I've done, and the result at the end. Here's my table layout : I've added the header on the file that I'm running the script on : On the web…
Felix
  • 13
  • 1
  • 1
  • 6
-1
votes
1 answer

XCode(8.3.3) using Xcode managed profile for exporting app ipa

While my setting for "automatically manage signing" was unchecked When i try to export the archive (Save for Development Deployment), XCode was using XCode managed profile for exporting the app. Anyone know why XCode using XCode managed…
ProgrammingBaKa
  • 363
  • 2
  • 19
-1
votes
4 answers

Upload IPA with Xcode7.3 with iOS 9.3 SDK issue

The project is made in Xcode 7.3 with Swift 2.3. Getting the following issue while uploading build on AppStore. error itms-90725: "sdk version issue. this app was built with the ios '9.3' sdk. all new ios apps submitted to the app store must be…
Siddhesh Pawar
  • 259
  • 4
  • 24
-1
votes
1 answer

export ipa from react native with xcode

I have an app written with native responses. I want to get an iPA output file, and when I do this with xcode, the file size of the iPA is lower than 4M, and actually the file can not be installed. where is the problem from?
-1
votes
1 answer

Ipa file exported with "save for development deployment" option will expire after 2 or 3 months?

My client complaining that after 2 or 3 months the app when launched opens and closes immediately and then they have to reinstall the app, my question is does the ipa file have some validity/expiry date once installed?
Ariven Nadar
  • 1,278
  • 13
  • 13
-1
votes
1 answer

Error when installing FreeIPA on CentOS

I've gotten a message saying I've successfully installed FreeIPA on my CentOS machine, but when I try to log into it from my browser I get this message. My host name is mike.imagine So I typed in https://mike.imagine.com/ipa/ui/ and I get "400 Bad…
Mike Shobes
  • 59
  • 1
  • 6
-1
votes
1 answer

appcelerator is not creating IPA file

I have updated my Xcode to latest version, Now I am unable to generate my IPA file. I tried several method but did not get any luck. I have tried with 5.1 and latest SDK as well. If any idea then let me know.
-1
votes
2 answers

An error occured during export, Codesign failed , XCode 8.2.1

AnyOne has an idea how to solve this ? PS : My project Settings are all verified. Thanks.
Skander Fathallah
  • 503
  • 1
  • 5
  • 10
-1
votes
2 answers

How many options there are to test an iOS app in a device?

I need send to other people my iOS app in objective-c before upload this to apple store. I have an apple developer account and I know the UDID of all devices to test the app. Could I use .ipa to test in other devices? I know testFlight, but are…
user3745888
  • 6,143
  • 15
  • 48
  • 97
-1
votes
2 answers

Why phonegap ipa is in installing loop?

trying to install my app on iphone, but it stuck in nstalling loop.For creating cert and prov profie, followed this steps: http://community.phonegap.com/nitobi/topics/detailed_guide_for_setting_up_building_ios_apps_without_a_mac?page=2 I have…
-1
votes
1 answer

iOS 9/Swift 2 IPA size has increased on the App Store

After upgrading the app to iOS 9/Swift 2, I have noticed that the IPA size has increased from 18 mb (Swift 1.2/ iOS 8) to 26 mb. Please note that I have disabled Bitcode because some frameworks are not supporting it. I also noticed that…
amandeepsingh
  • 88
  • 1
  • 4
-1
votes
2 answers

Add .ipa file as library in a xcode project

I created a project and generated its .ipa file. Now I want to link this .ipa file as library into other project. Is it possible to do it? If yes how can I achieve this? Please help me..