MattBlack
MattBlack

Reputation: 3828

No Xcode support for iOS 12.3

My phone has updated to iOS 12.3 beta, the latest Xcode 10.2 beta only supports up to iOS 12.2.

Is there a beta version of xcode anywhere that is compatible with iOS 12.3?

I guess the options are to wait for apple to release a new version of xcode or to roll back. unless anyone knows otherwise?

Upvotes: 22

Views: 16282

Answers (6)

C. Ecker
C. Ecker

Reputation: 163

How I fixed similar issue with iOS 12.5.3 (XCode 10.1)

I opened Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport in Finder, created folder called 12.5.3 (16H41) and copied the files from folder 12.4 (16G77).

Upvotes: 0

Alessign
Alessign

Reputation: 788

How I fixed a similar issue with iOS 12.4

Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport and create folder called 12.4 (16G77) and copy the files from one of the previous folders f.e 12.3

Go to Xcode and click on the "Set active scheme menu" and click on Download Simulators at the bottom:

enter image description here

Xcode will automatically start updating and re-creating the supporting files for 12.4:

enter image description here

Hope this will help someone.

Upvotes: 3

cfphpflex
cfphpflex

Reputation: 603

worked for me: 1. cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport 2. cp 12.0 12.2 3. cp 12.0 12.3 4. downloaded Apple configurator and identified the connected devices 5. in xCode targeted the connected device 6. build worked

Upvotes: 0

Sergio Cervantes
Sergio Cervantes

Reputation: 31

Any update on The IOS 12.3 Beta Developer Disk Image? The official Debugging File for iOS 12.3 is not available. You can try the following method to let Xcode support debugging iOS 12.3 devices.
1. Go to the folder /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
2. Create a folder named "12.3".
3. Copy the "12.2" file to the "12.3" folder.

Upvotes: 3

nina
nina

Reputation: 442

I find a solution to fix this problem.

You should make a folder named 12.3 (... what is written in your error message) in Program/Xcode-beta/Contents/Developer/Platforms/iPhoneOS.platforms/DeviceSupport/ and copy the files from 12.2 in there.

Now you can run your apps on iPhones with iOS 12.3.

Upvotes: 41

DawnSong
DawnSong

Reputation: 5162

Actually, Xcode 10.2.1 could debug with real devices running iOS 12.3

Try it by yourself.

Upvotes: 1

Related Questions