4

I received an xcarchive of an app. I would like to check it on my device and then distribute. How can it be installed on the iPhone?

Luda
  • 7,282
  • 12
  • 79
  • 139
  • 3
    This is certainly on topic, as it relates to testing of an Xcode build product on a device. – Simon Woodside Apr 26 '13 at 16:06
  • 2
    This is certainly possible in 2023, but I'm unable to post an answer because the question is "closed." 1. Right-click xcarchive, choose "Show Package Contents." 2. Go to Products > Applications. 3. Copy application somewhere. 4. In Xcode go to Devices and Simulators. 5. Select desired device. 6. Click the little "+" button under Installed Apps. 7. Select the application file copied earlier. – Chuck Batson Jan 02 '23 at 22:18
  • @ChuckBatson was that specific to an older version of Xcode, I don't see "installed apps" in 14.3.1 – Craig Aug 30 '23 at 22:45
  • @Craig I'm still seeing it in Xcode 14.3.1. Unsure why it doesn't show up for you. Maybe there's an alternate way to do the same thing (i.e. menu item)? Or perhaps the device needs to have developer mode enabled? – Chuck Batson Aug 31 '23 at 23:58

1 Answers1

5

You can't install an xcarchive on an iPhone. Ask the person that sent it you to send a ipa file instead.

Ben Clayton
  • 80,996
  • 26
  • 120
  • 129
  • 4
    If the **xarchive** is properly signed then there should not be any problem in installing it on the device.one can always find the .app found in archive and **drag and drop in iTunes** to make the **ipa** and install in the device via iTunes or one can easily install the .app through **xcode devices** and he can even use the archive to open up xcode archives and re-sign the app with his own signers.I don't see a problem with this.He has to be careful about entitlements though if available – Durai Amuthan.H Jun 01 '17 at 12:28
  • 1
    @DuraiAmuthan.H is correct, this is indeed entirely possible, and not difficult. See my comment under the question. – Chuck Batson Jan 02 '23 at 22:20
  • Without any signer one can install from xarchive ? – Durai Amuthan.H Jan 12 '23 at 11:22