How to run ios13 simulator on xcode 10.3

14,856

Solution 1

Link the Xcode 10.3 devices directory to the Xcode beta devices directory.

Terminal to /Applications/Xcode/Contents/Developer/Platform/iPhoneOS.platform/DeviceSupport and then type

sudo ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/13.0/ ./13.1

More info here: Using iOS 13/13.1 devices with Xcode 10.3 (instead of Xcode 11).

Solution 2

Download Xcode 11.0 first. Download iOS 13.0 simulator with it. Close Xcode 11.0 Open Xcode 10.3 'Add additional simulator' -> in device choose menu, there will be an option to select iOS 13.0

Share:
14,856

Related videos on Youtube

Einn_a
Author by

Einn_a

Updated on September 18, 2022

Comments

  • Einn_a
    Einn_a almost 2 years

    I have got xcode 10.3 and xcode 11 beta installed on my mac. I am hoping to run UI tests on simulator with ios 13 beta which comes with xcode 11. Unfortunately the app does not compile with xcode 11. I am wondering if I can run ios13 simulator on xcode 10.3 instead?

  • Ben Thomas
    Ben Thomas almost 5 years
    The question was about simulator not device, and unfortunately this solution does not work for simulator. Works great for devices though.