srikanth kumar
srikanth kumar

Reputation: 87

This iPhone 7 (Model 1660, 1778, 1779, 1780) is running iOS 12.3.1 (16F203), which may not be supported by this version of Xcode

I getting the following error when I run the app into device.

This iPhone 7 (Model 1660, 1778, 1779, 1780) is running iOS 12.3.1 (16F203), which may not be supported by this version of Xcode.

my Xcode is 10.1

Upvotes: 3

Views: 6920

Answers (6)

Daniel Garmoshka
Daniel Garmoshka

Reputation: 6362

There may be problems with running your app on latest XCode version, but you can add supported devices to your current XCode's folder.

  1. download version of required iOS from https://github.com/filsv/iPhoneOSDeviceSupport
  2. Put it to Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport inside of XCode folder
  3. Restart XCode

Upvotes: 5

Rattanakoudom Sambath
Rattanakoudom Sambath

Reputation: 524

For anyone who encounters this problem on Device with iOS 14 and Xcode 11.5 Version

_Download iOS 14.0 Zip from this link:

https://github.com/filsv/iPhoneOSDeviceSupport

_and past the folder to:

Xcode/Show Package Content/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport

_Quit and Restart both XCode and iPhone

_In XCode go to:

Window/Device and Simulator and Click on + Button Select your device Click Next and Click Done, and then build and run your XCode

Note: You can also clear your cache before the build and run your XCode

Hope this helps who faces this problem, cheers.

Upvotes: 0

Nagendran Arivalagan
Nagendran Arivalagan

Reputation: 86

Temporary solution for this change folder named 12.3.1.its working for me once we get 12.3.1 package content we will move corresponding place

Upvotes: 2

Taimoor Suleman
Taimoor Suleman

Reputation: 1626

I have the same problem , and here is the solution worked for me

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.

Close xcode completely and reopen it.

Now you can run your apps on iOS 12.3.

Upvotes: 4

Scriptable
Scriptable

Reputation: 19758

Your current version of Xcode does not support the iOS 12.3.1 version of the SDK.

There are a couple of options available:

  1. Update Xcode to the latest version
  2. Download a add the required device support files to your current version.

You can download the support files here or from the Apple Developer website. There is also instructions on where to place the files once downloaded

Upvotes: 5

Bhavik Modi
Bhavik Modi

Reputation: 1565

You should update your XCode to support all listed devices.

Upvotes: 0

Related Questions