skip to Main Content

My iPhoneXR updated to 15.7, and XCode updated to 14. Which happened right as MacOS was updating, so I’m wondering if something got wonked with the XCode update. Now I can’t program my phone.

Looking in

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

there is no 15.7. But the various github repositories that have various support files, none of them include 15.7. Is there a place these are stored at?

When I open the "downloads" window for XCode, it’s just a blank window.

4

Answers


  1. See Xcode 14 Release Notes:

    Xcode 14 cannot be used with iOS 15.7 for development. (99847608)
    Workaround: Use Xcode 13.4.1 with iOS 15.7.

    Login or Signup to reply.
  2. The 15.7 support files can be downloaded from: https://github.com/JinjunHan/iOSDeviceSupport

    Unzip the file in the DeviceSupport folder and (re)start xCode.

    Login or Signup to reply.
  3. This has been resolved in the latest release candidate of Xcode 14.0.1 which can be downloaded directly from here. Apparently, Apple left out all support for 15.7 in the first release of Xcode 14.

    Login or Signup to reply.
  4. DO NOT download what amounts to an Xcode patch from some random github repository and then patch your build system with it, like suggested in another answer!

    If you can’t or do not want to upgrade to Xcode 14, and instead want to patch your Xcode 13 installation, you should download the files directly from Apple. The following describes the process step by step.

    1. Go to https://developer.apple.com/xcode/

    2. Click the blue "download" button.

    3. A menu opens. Select "website" from the menu.

    4. This will download an xib archive. This file is large (between 7 and 8GB)

    5. Open the xib archive in a Finder window, right-click on Xcode and select "Show Package Contents". Then navigate to Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

    6. Inside you will see directories for iOS versions. Choose the ones you are missing in your Xcode 13 installation and copy them over to /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search