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

Xcode - But... Where are our archives?

I've submitted three versions of my app onto the App Store using the Build and Archive commands. But... Where are those archives? I've just learnt that I just need them to be able to read crashlogs. My ~/Library/Developer/Xcode/Archives folder is…
Oliver
  • 23,072
  • 33
  • 138
  • 230
115
votes
31 answers

Profile doesn't match the entitlements file's value for the application-identifier entitlement

I am trying to upload an app to the app store and I am getting this error on the page that has the certs. As far as I can tell I have changed the field so they have matched, but I am missing something. Any help would be greatly appreciated.
Paul Raymond
  • 1,185
  • 3
  • 8
  • 9
43
votes
2 answers

Difference between ipa and xcarchive?

What is the difference between an IPA file and an .xcarchive? Which one do I have to create to upload an app using Xcode's Application Loader?
Tony
  • 10,088
  • 20
  • 85
  • 139
16
votes
7 answers

Errors converting xcarchive to IPA - single-bundle archive + missing plist method values

I'm trying to convert my xcarchive to an IPA (XCode 7.1.1). The following command xcodebuild -exportArchive -archivePath foo.xcarchive -exportPath . -exportFormat IPA Fails with the error the archive at path 'foo.xcarchive' is not a…
Ohad Schneider
  • 36,600
  • 15
  • 168
  • 198
13
votes
1 answer

How to include dSYM file of an embedded framework to an app archive

My app uses some 3rd party framework. I have a framework itself and dSYM file for it. When archiving my app, the archive does not contain the dSYM file for this framework. It contains other dSYM files for ther frameworks that're included via Cocoa…
DoN1cK
  • 595
  • 7
  • 22
9
votes
2 answers

How do I see if the size of my iOS 14 app clip is below 10MB?

I have been building an app clip using the Xcode 12 beta. According to the documentation the application should be less than 10MB, but I have no way of seeing if I am actually below this limit.
Lucas van Dongen
  • 9,328
  • 7
  • 39
  • 60
7
votes
5 answers

xcarchive malformed due to missing Info.plist

I have two project which I build based on the same Rake script, which internally uses XCode build. Building it with xcodebuild -archivePath (ARCHIVE succeeds), then I package app with xcodebuild -exportArchive. The problem is that first project…
Fishman
  • 1,737
  • 1
  • 25
  • 42
5
votes
1 answer

iOS - dSYMs for re-signed app

I'm working on an branded application for customers. In order to automate the signature branding part I developed a script that the customer can run to resign the generated xcArchive with her/his certificates and provisionings and then upload it to…
Eil88
  • 121
  • 5
4
votes
0 answers

Why do I see a lot of .dSYM files in my archive>dSYM folder?

I was analysing a crash and I noticed I have a lot of .dSYM files in my dSYM folder inside archive package, below is the image of dSYM folder from my archive showing all the contents inside it. Also I noticed there is only 1 file with the name of…
3
votes
1 answer

unsigned xcarchive aps environment missing

I want to share unsigned xcarchive. To make unsigned xcarchive. I set Provisional profile and Signing Certificate as None. I have crated Xcarchive with below commands one by one. xcodebuild -scheme xxxx -workspace xxx.xcworkspace -configuration…
utkal patel
  • 1,321
  • 1
  • 15
  • 24
3
votes
1 answer

Xcode Post Archive Action - Archive Path Environment Variable

I'm using Xcode 11.3.1 (11C504) on macOS Catalina version 10.15.2 (19C57), to create an iOS app. I want to add a post archive step that will run manipulation on the xcarchive files. I'm not sure which environment variable provide the archive…
shugigo
  • 133
  • 1
  • 10
3
votes
1 answer

CompileSwift normal arm64 when using `xcodebuild` to archive

Issue: getting the following error in terminal when archiving The following build commands failed: CompileSwift normal arm64 CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler Steps to reproduce: xcodebuild -workspace…
as diu
  • 1,010
  • 15
  • 31
3
votes
2 answers

xcarchive to ipa using msbuild command line

Premise: I have been limited to utilizing xamarin for the early stages of this project as an attempt to speed up the dev process for beta distribution. (spoiler: it's slow and poorly documented). So I am creating a build pipeline for app store…
Randy
  • 1,400
  • 2
  • 12
  • 30
3
votes
0 answers

Xcodebuild export ipa from xcarchive for enterprise

Two days ago it worked well. But right after June 22 4pm UTC+3 export fails with the error - "error: exportArchive: No applicable devices found." I read every article, every post about this error, but nothing is related to mine one. I do not have…
adnako
  • 1,287
  • 2
  • 20
  • 30
3
votes
1 answer

Xamarin: Generate xcarchive from command line

Is there a possibility to directly generate a xcarchive file from the command line? So that you can generate an AppStore build with a CI tool like Jenkins? With Xcode it seems you can, but I'm using Xamarin Studio on Mac. Anyway is this possible? Or…
testing
  • 19,681
  • 50
  • 236
  • 417
1
2 3