Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use iOS 13.2.3 with Xcode 10.3 (dyld_shared_cache_extract_dylibs failed)

There is many answer about dyld_shared_cache_extract_dylibs failure. Notably this link and this other one and this github issue.

None of this worked for me. I have the last iOS DeviceSupport installed, and I tried to remove the dyld_shared_cache_arm64e files, add empty dyld_shared_cache_armv6 or dyld_shared_cache_arm64e files without success. Is it a way to use my phone without downgrading to iOS 13.1.2 ?

like image 832
Jeremy Cochoy Avatar asked Dec 22 '22 20:12

Jeremy Cochoy


1 Answers

I have Xcode 10.2.1 and iPhone 11 (iOS 13.3).

For iOS 13.3 Above solution not work because for iOS 13.3 not generate file like

"dyld_shared_cache_arm64"

It will generate file name like "dyld_shared_cache_arm64e" so copy this file from any iOS less then 13.3

I have copy "dyld_shared_cache_arm64" this file from "13.2 (17B84)" and past that file in "13.3 (17C54) arm64e" and rename this "dyld_shared_cache_arm64" to "dyld_shared_cache_arm64e"

and it successfully worked for me.

enter image description here

enter image description here

enter image description here

like image 120
bhavik Avatar answered May 16 '23 07:05

bhavik