How not to update your Xcode while you still want to run projects on latest iOS version

Krauser Huang
2 min readApr 29, 2022

This is just another way to skip that unwanted update on your Xcode while you’re busy🙈

Deja vu?

How it’s happened?

I haven’t use real device to test my project since I update my iOS version over 15, but the problem need to use real device is really annoying me, so I can’t just run away from this problem, I try to restart my phone/Xcode/Macbook, then I found a article said it might be the version problem, so that’s the whole journey begins…

Trigger Criteria

If when your iOS version isn’t match your Xcode support device🤷🏻‍♂️

My situation

  • iOS Version → 15.4.1
  • Xcode Version → 13

Solution

  1. You can enter Window → Devices and Simulators to check your connection status
normally here you can see the problem then search for solution

2. Check your required version mapping

As the scenario, you need to update Xcode to 13.3 to support 15.4 real device

3. Search for location
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

a. In Finder, enter command + shift + G then paste above path

b. From Xcode app icon, right-clicked then choose Show Package Contents, find the path above

4. Put the directory in, and that’s all!👏🏼👏🏼👏🏼

--

--