Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to run my app on iOS 13. For a framework problem

I'm trying to test my project on my iPhone with iOS 13, using Xcode 12 beta 6.

The app crash on start and this is the message in the log:

dyld: launch, loading dependent libraries DYLD_LIBRARY_PATH=/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/GPUTools.framework/libglInterpose.dylib:/usr/lib/libMTLCapture.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib (lldb)

Someone can help me? Thank you

like image 623
BlackRock Avatar asked Dec 30 '22 21:12

BlackRock


1 Answers

This occurs because Xcode fails to sign the frameworks that are provided by SwiftPM with your app’s signing identity. It’s a known issue (SR-13343) in Xcode 12.

You can do these steps on third framework file to try fix :

  1. select:Siging & Capabilites.

  2. find : FrameWorks, Libraries, and Embedded Content.

  3. change : the. "embed" of the third frameworks from "Do not Embed" to "Embed & Sign".

like image 189
Beckon Avatar answered Jan 16 '23 03:01

Beckon