Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mhberger/1eeafa6622979829fc8103f1adf806ec to your computer and use it in GitHub Desktop.
Save mhberger/1eeafa6622979829fc8103f1adf806ec to your computer and use it in GitHub Desktop.
Using iOS 12.2 devices with Xcode 10.1
// The trick is to link the DeviceSupport folder from the beta to the stable version.
// Updated on Feb 15th, 2019 for Xcode 10.1
// For beta
ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.2\ \(16E5191d\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
// For stable and Xcode 10.1 installed at /Applications/Xcode\ 10.1.app
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.2\ \(16E226\) /Applications/Xcode\ 10.1.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/
// For stable (10.2.1) and Xcode 10.1 installed at /Applications/Xcode\ 10.1.app
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/12.3 /Applications/Xcode\ 10.1.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
// sudo needed if you run the Mac App Store version. Always download the dmg instead... you'll thank me later :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment