How to run/install app in iOS 13 device from the Xcode 10.2.1 using device supported file
Asked Answered
V

4

6

I have recently updated iPhone to iOS 13 after the update my existing code (which was working fine in iOS 12.3) stopped working. Getting below error.

enter image description here

so as a workaround I added device supported file for the iOS 13 in below location

⁨Applications⁩ ▸ ⁨Xcode⁩ ▸ ⁨Contents⁩ ▸ ⁨Developer⁩ ▸ ⁨Platforms⁩ ▸ ⁨iPhoneOS.platform⁩ ▸ ⁨DeviceSupport⁩

enter image description here

even after adding the device support file getting error could not locate the device support files.

Villiform answered 23/6, 2019 at 15:17 Comment(3)
Afaik Xcode 10 doesn't support the iOS13 images. The same question from a few weeks ago remains unanswered: https://mcmap.net/q/419039/-xcode-fails-to-build-on-real-ios-device-running-ios-13/95309 - Also, pretty sure you need to name the folder 13.0 (17A5508m)Joist
yes, it is working after changing the folder name... Thanks :)Villiform
I copied Xcode 11⁩ ▸ ⁨Contents⁩ ▸ ⁨Developer⁩ ▸ ⁨Platforms⁩ ▸ ⁨iPhoneOS.platform⁩ ▸ ⁨DeviceSupport⁩ ▸ ⁨13.0 to the same path in Xcode 10.3. I tried building and got the message "Could not locate device support files. This model Phone 11 is running iOS 13.1.3 (17A878). I renamed the folder to 13.1.3 (17A878), and was then able to build and run on my iPhone 11 Pro Max.Winer
O
7

Make sure you name the folder to match the exact version, i.e. 13.0 (17A5508m)

Ovariotomy answered 23/6, 2019 at 16:19 Comment(0)
D
2

I downloaded the Developer disk image for iOS 13.0 from here and added support file in Xcode Version 10.3 (10G8).

https://github.com/iGhibli/iOS-DeviceSupport/blob/master/DeviceSupport/13.0.zip

All other devices support list.

https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport

Follow These steps.

Unzip downloaded file. Right click on Xcode and click on Show Package Content. Then paste your file on path.

Applications -> Xcode.app -> Contents -> Developer -> Platforms -> iPhoneOS.platforms -> DeviceSupport

Then at last restart your Xcode.

It works for me.

Devastating answered 6/1, 2020 at 7:30 Comment(0)
B
0

PS: Don't forget to restart Xcode after drag&drop device support folder.

Bromic answered 9/11, 2019 at 1:18 Comment(0)
P
-1

Download xcode11 Beta and take Disk Image for iOS 13 from xcode 11 Beta device support. It will work for you.

Profanity answered 6/8, 2019 at 18:12 Comment(1)
"take Disk Image for iOS 13 from xcode 11 Beta device support. It will work for you." A good answer should be more specific and declarativeMarmite

© 2022 - 2024 — McMap. All rights reserved.