How to run an application compiled in Xcode 7.3.1 on iOS 10 Simulator

So, due to all the name changes, my current project does not start on the beta version of Xcode 8 and has many compilation errors that I cannot easily get rid of.

Is there any way to at least run the compiled version created in Xcode 7.3.1 on the iOS10 simulator?

+6
source share
1 answer

The trick is to create a symbolic link to the DeviceSupport folder from the beta to the stable version

From terminal

ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/10.0\ \(14A5261u\) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport 
+2
source

All Articles