"Could not find Developer Disk Image" run error

11,335

Solution 1

Xcode 7.2.1 currently only supports up to iOS 9.2

9.3 is in beta, and requires Xcode 7.3, which is currently also in beta. You can download from the developer portal. You won't need to be a paid developer to do this.

Solution 2

The easiest way is update your OS and XCode but if you have some reason to stick with Yosemite 10.10.5 Xcode 7.2.1, You can use this copy and paste trick to make it work. Just download Xcode 7.3.1 GM seed and here are files you need to copy and replace the old one.

  1. /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/version.plist
  2. /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
  3. /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/9.3 (13E230)

This work for me.

Solution 3

enter image description hereTo run your project from your latest Xcode version to latest iOS device follow the following steps :

Go To Finder -> Applications -> Right Click on latest Xcode version -> select show package content -> Developer -> Platforms -> iPhoneOS.platform -> DeviceSupport -> Copy the latest version folder and paste at the same location of your old Xcode i.e in the DeviceSupport folder of your old Xcode.

Then Restart Xcode.

Solution 4

As opposed to running your project on the simulator, when you run it on the device, you must make sure your version of Xcode supports the version of the beta you have (most likely, it would not).

You can easily just check your target and click on the "General" tab. Under the "Deployment Info" section, select the "Deployment Target" drop-down menu and you will see the versions your version of Xcode supports (as shown below): Xcode Deployment Target Dropdown

Share:
11,335
Julius Pallesen
Author by

Julius Pallesen

Updated on July 24, 2022

Comments

  • Julius Pallesen
    Julius Pallesen almost 2 years

    enter image description hereWhen I try to run an app on connected iPhone I get the error: "Could not find Developer Disk Image" I am not registred Apple Developer right now, but you wouldn't need that in xcode 7 would you? I Just updated xcode to version 7.2.1 and my iPhone (6 plus) is running iOS 9.3

  • Has
    Has about 8 years
    Hi, I have ios 9.3.1 on my iphone and hence I downloaded Xcode 7.3 from the developer portal. However I now get an error saying You have OS X 10.10.5. The application requires OS X 10.11 or later. I went into About This Mac >> Software Updates and it says No updates available. How can I start deploying apps to my iphone again now? Thanks!
  • nickolay
    nickolay about 7 years
    This is correct advise. Thank you. Just copy the required platform from the new Xcode to Xcode 7.3.1 and run it.