swift 0线程1暂停后出现严重错误:信号SIGABRT



我的项目暂停了一个月。我保存了工作版本。现在,当我尝试在没有任何更改的情况下调试时,线程1上的应用程序滴水错误:用这个信号SIGABRT:

dyld: Library not loaded: @rpath/GTMSessionFetcher.framework/GTMSessionFetcher
Referenced from: /private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/BillyBill
Reason: no suitable image found.  Did find:
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: code signature invalid for '/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher'
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: stat() failed with errno=25
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: code signature invalid for '/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher'
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: stat() failed with errno=1
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: code signature invalid for '/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher'
/private/var/containers/Bundle/Application/1A1C365B-14A1-4438-9995-5622C7F9FAC3/BillyBill.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher: stat() failed with errno=1

如果您在iOS 13.3.1的物理设备上测试您的应用程序,并且您使用的是podfile,那么这是动态框架的问题。在你的podfile评论中使用_框架!行并再次运行pod安装。

最新更新