Reputation: 41
I need to use IOS 10.1 full release version to run an app I am building. How do I make the latest version of Xcode (version 8.1) work with IOS 10.1 full release version?
Upvotes: 3
Views: 2747
Reputation: 1787
FWIW this gist offers a work around by symlinking to the Beta version of Xcode.
Copied for reference:
// The trick is to link the DeviceSupport folder from the beta to the stable version.
ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.1\ \(14B54\)/ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
// Then restart Xcode and recommect your devices. You will need to do that for every beta of iOS 10.1+/Xcode 8.
// sudo needed if you run the Mac App Store version. Always download the dmg instead... you'll thank me later :)
Upvotes: 1
Reputation: 416
You can use Xcode 8.1 beta 3 to build on iOS 10.1 devices here: https://developer.apple.com/news/?id=09212016a
Upvotes: 0
Reputation: 1670
Xcode 8.1 is only at Gold Master at the moment. You'll have to wait for the "full" release of 8.1 which will be available on App Store, until then you have to use 8.0 to archive your projects.
Upvotes: 1