26

After updated my iPhone to 11.4, I found out that current version (Version 9.3 (9E145)) of Xcode do not have device support files for iOS 11.4 (15F79). Is there anything I can or should do to remedy this issue?

Jeffrey Chang
  • 433
  • 1
  • 7
  • 19

8 Answers8

45

Also you can download latest and earlier version HERE

Muhammad Noman
  • 1,566
  • 1
  • 15
  • 21
EK Chhuon
  • 1,105
  • 9
  • 15
  • Just to add, as the bottom comments have said; you can donload the image file from Xcode 9.4 and then copy `Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.4` into the same place in your current Xcode installation. Or you can simply use Xcode 9.4 as your XCode version. – micnguyen Jun 29 '18 at 07:55
  • Where we can download ? Paste Download link please – Muhammad Noman Jun 29 '18 at 08:28
  • 1
    I had to restart XCode for it to work, (maybe it was obvious but not for me) – Sodj Aug 27 '18 at 10:41
9

The latest version of XCode (version 9.4) was released on the 29th of May, which has support for iOS 11.4. You simply need to update XCode as well.

XCode 9.4 brings support for:

  • Swift 4.1
  • iOS 11.4
  • watchOS 4.3
  • tvOS 11.4
  • High Sierra 10.13.4
Obsidian Age
  • 41,205
  • 10
  • 48
  • 71
4

Go to Apple Developer site and download Xcode 9.4.zip and decompress it and copy the folder:

Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.4 (15F79)

and paste it into the same directory of your current Xcode folder.

I recommend to download and use contents from Apple instead from unknown sites.

s4mt6
  • 143
  • 1
  • 2
  • 9
3

iOS 12.0 (16A5288q) device support file

https://drive.google.com/open?id=1eQA8-wKd6Zy0BDbQ8MJeupGkpoy1btz8

1

In my case, I didn't want to update my Xcode but my iPhone device updated automatically. So i downloaded the latest XCode from https://developer.apple.com/download/more/

  1. Open the archived file using "Right Click" -> "Show package contents".
  2. Copy the file from Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport to your Xcode.
  3. Restart Xcode.
0

Based on the following answer , just download the files and place the folder under /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform

Omar Chaabouni
  • 448
  • 2
  • 19
  • 3
    The correct path is `/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport` and don't forget to restart Xcode! – Jonathan Maim Jun 28 '18 at 07:10
0

If you not able to locate the Xcode.app in the Application folder, the easiest way is to sudo find / -name Xcode.app -print and copy the required device support file.

Please do restart the Xcode to reflect the changes.

Rajesh Panda
  • 197
  • 1
  • 4
0

You can download each SDK from this github repository and then move it into Applications/Xcode App/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

Vinvolv
  • 91
  • 4