IOS 8 simulators not visible in Xcode 7 beta

I'm using Xcode 7 beta strong>, which Apple released during WWDC2015 , and it looks like it doesn't have iOS8 simulators. I tried downloading them using Xcode > Preferences > Downloads > Components, , but it does not display simulators.

I have Xcode 6.3.2 on a Mac, and iOS8 simulators are visible there. Any ideas how to do this in Xcode 7?

-Tejas

+6
source share
2 answers

Xcode 7 beta 1 release notes :

Simulator

• Xcode 7.0 beta does not support iOS 8.4 and earlier versions of the simulator. (20699475)

+4
source

First find the target file:

 /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/usr/lib/system/host/liblaunch_sim.dylib 

You need to backup liblaunch_sim.dylib (just in case). Secondly, copied to the destination ( Do not forget to backup )

 /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib 

And if you need it: iOS 8.1.simruntime iOS 8.2.simruntime iOS 8.3.simruntime Everything is done.

Hope this helps.

+1
source

Source: https://habr.com/ru/post/988995/


All Articles