Created
June 15, 2017 14:34
-
-
Save DreamingInBinary/cb387557c956ae7e1d2de3d42ab7b2f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cp -r /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0\ \(15A5278f\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To include Device Support files for all versions of
iOS 11.*
, including the latest iOS 11.3 (as of writing) back into Xcode 8, I found I had to modify the copy command as follows, note the change of the wildcard clause from11.0*
to11.*
to allow for other point releases of iOS 11 to be copied:cp -r ~/Downloads/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.* /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/
Where ~/Downloads/Xcode.app is in this case Xcode 9.3, which includes support for the iOS 11.3, and where /Applications/Xcode.app is in this case Xcode 8.2.1 which is the last version of Xcode that will run on El Capitan (OS X 10.11) - the system this patch was tested on.
It is likely that iOS 12 support will require at least Xcode 9.4+ however, so this solution may not work for the next iOS release.