Skip to content

Instantly share code, notes, and snippets.

@namndev
Created October 29, 2019 06:59
Show Gist options
  • Save namndev/fa1cc3d1aa76c089946bb8a3b97684de to your computer and use it in GitHub Desktop.
Save namndev/fa1cc3d1aa76c089946bb8a3b97684de to your computer and use it in GitHub Desktop.
Using iOS 13.2 devices with Xcode 11.1 (instead of Xcode 11.2) (also, Xcode 10.3)

// The trick is to link the DeviceSupport folder from the beta to the stable version.

// sudo needed if you run the Mac App Store version. Always download the dmg instead... you'll thank me later :)

// Support iOS 13.2 devices (Xcode 11.2) with Xcode 11.1:

sudo ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/13.2 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

// Xcode 10.3 to Xcode 11

sudo ln -s /Applications/Xcode-11.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/13.0 /Applications/Xcode-10.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

// Then restart Xcode and reconnect your devices. You will need to do that for every beta of future iOS versions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment