Questions tagged [xcarchive]

XCARCHIVE is an application archive created by Xcode, Apple's development IDE for Mac OS X and iOS applciations. It stores all applications files in a format that can be submitted to the App Store for review, and contains a digital signature identifying the developer. Use this tag for all questions related to this application archive.

XCARCHIVE is an application archive created by Xcode, Apple's development IDE for Mac OS X and iOS applciations. It stores all applications files in a format that can be submitted to the App Store for review, and contains a digital signature identifying the developer. Use this tag for all questions related to this application archive.

37 questions
3
votes
1 answer

Export .xcarchive in XCode 6?

How to create .xcarchive file in Xcode 6. In previous versions of Xcode we can directly export it from Organizer but in Xcode6 there is no option to export xcarchive file from Organizer. Xcode 5 Xcode 6 GM
christijk
  • 1,753
  • 18
  • 26
2
votes
0 answers

Keep symbols when converting xcarchive to ipa

I am trying to rebuild bitcode files of a binary and during the process, clang displays an error about undefined symbols for architecture arm64 as the application makes use of external frameworks. I noticed that if I provide the Frameworks folder in…
localacct
  • 611
  • 5
  • 13
2
votes
1 answer

Use Visual Studio Tools for Apache Cordova to create an xcarchive instead of ipa?

We're using Visual Studio Tools for Apache Cordova to build our app for iOS (and Windows). We have a Mac running the remote agent. This works well, except we've only been able to have the setup produce signed .ipa files. We're now looking into being…
Strille
  • 5,741
  • 2
  • 26
  • 40
2
votes
2 answers

Can a xcarchive file be created from a ipa file?

If you have an ipa file (e.g. generated through Jenkins), can you create an archive out of it? Is there a possibility to do that in Xamarin Studio/Xcode after the ipa file has been created? Or is the only way generating a new ipa/xcarchive file in…
testing
  • 19,681
  • 50
  • 236
  • 417
1
vote
0 answers

Errors generating ipa or xcarchive ( Did you forget to declare this file as an output of a script phase or custom build rule which produces it? )

We have some errors when we are generating the ipa or xcarchive file with some files from an external framework, in which the error indicates that the file does not exist in that path and we have verified that it does exist. We have tried several…
devman
  • 11
  • 2
1
vote
0 answers

What's the correct way to create an xcframework from a CocoaPod pod you own?

Suppose I have a pod named Honey. It has its own example app. Much like how it's shown here: https://github.com/CocoaPods/CocoaPodsExampleLibrary In that case I have a root project directory structure as: Example Honey Honey.xcodeproj …
mfaani
  • 33,269
  • 19
  • 164
  • 293
1
vote
1 answer

How do I use fastlane to compile my iOS app into an .xcarchive, then separately sign and make an IPA?

I’m making an iOS app for a client, but don’t have access to their provisioning profiles or signing certificates. I’d like to give my client an already compiled version of the app so that all they need to do is sign it and then upload it to…
Sean Saleh
  • 460
  • 5
  • 17
1
vote
0 answers

Change devices target of an .xcarchive

I´m using Cocoon to build a Construct 2 project for IOS, specifically for iPhone. The problem is that cocoon builds for "Universal" (iphone and iPad). The build format is .xcarchive. My question: How can I change the device target of a .xcarchive to…
Fabio Colombini
  • 112
  • 1
  • 12
1
vote
1 answer

Is that safe to share .xcarchive?

I`m somehow amateur in Xcode and this matter is so important for me. My Friend use his developer id to publish my app and he ask me to give him .xcarchive instead *.ipa file As I read in stackoverflow topics .xcarchive have the same content of ipa…
hamid mohammadi
  • 73
  • 1
  • 1
  • 6
1
vote
1 answer

How does Xcode find the dSYM to match a crash file?

I received a .crash file from a customer and need to link it to the correct dSYM file. The archive for this product/version was built by another developer using Xcode, and the .xcarchive file put into git for a rainy day (like today). After reading…
Jim Leask
  • 6,159
  • 5
  • 21
  • 31
1
vote
0 answers

How to create .xcarchive

How can I create .xcarchive without any signing? (I'll sign it later) I've tried so far this: xctool -configuration Release -sdk iphoneos -workspace "/users/myUser/path/to/workspace/myWorkspace.xcworkspace" -scheme myScheme clean archive…
gran33
  • 12,421
  • 9
  • 48
  • 76
1
vote
1 answer

Building xcarchive and ipa in the same job in Jenkins

I am working on Jenkins CI on iMAC. I have successfully generated .xcarchive and .ipa files in separate jobs in Jenkins. what i want to know is can we generate both the files within the same job.? is it possible to run a single job for the creation…
Tabish Sohail
  • 1,040
  • 2
  • 9
  • 22
1
vote
1 answer

Extracting .xcarchive files

How do you (batch) extract the contents of many .xcarchive files? The story: I have a crash log from a semi-unknown build, this build would match a dSYM. I have lots of dSYMs from all the builds I have. I need to match the crash log versus the dSYM.…
Jonny
  • 15,955
  • 18
  • 111
  • 232
0
votes
0 answers

What is the "Distributions" section of .xcarchives Info.plist used for?

Recent Xcode versions started to put "Distributions" key/value into .xcarchives Info.plist file. What is it used for? Can I remove it before signing? Is there even a definition/documentation of keys in this Info.plist? (example of this .plist can be…
leizeQ
  • 795
  • 1
  • 7
  • 18
0
votes
1 answer

use cordova cli to generate xcarchive file

I use cordova -- build ios --device to successfully generated signed *.ipa file, however it seems there is no *.xcarchive file here: 2018-10-18T21:02:53.4124540Z ** ARCHIVE SUCCEEDED ** 2018-10-18T21:02:53.4125690Z 2018-10-18T21:02:53.7699240Z…
Alexey Melezhik
  • 962
  • 9
  • 27