How to Add iOS 13.4 Device Support to Xcode 11.3 on Mojave

Quick guide to adding support for unsupported iOS versions to Xcode by manually adding the needed DeviceSupport files

The latest version of iOS (13.4) was recently released, and with it the new version of Xcode. This new version of Xcode only runs on macOS Catalina. If, like me, you have been avoiding Catalina as much as possible this is a problem, because if you try to use the last version of Xcode that supports Mojave (Xcode 11.3) to Build and Run on a device that is running iOS 13.4 it will give you an error (as it only has support for iOS versions up to iOS 13.3).

However, you can add extra iOS version support to Xcode by taking the DeviceSupport files from one version and adding them to another version (both to add support for newer, and older versions of iOS).


  1. Find or download a version of Xcode that support the iOS version you want, in this case the latest one.
  2. Extract the Xcode.app bundle, navigate to Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/
  3. Take the folder for the iOS version you need and place it in the equivalent directory inside the version of Xcode you are running.
  4. At this point you'll need to restart Xcode at the minimum, though in my case I had to reboot completely.
  5. Now connect the iOS device running that iOS version and attempt to Build and Run to it.
  6. Xcode should not pull down the symbol files it needs from the device and you are good to go.

This will not give you the new SDK, but should allow you to continue using your existing Xcode for a while longer.