Library not loaded: @rpath/Alamofire.framework/Alamofire

前端 未结 3 829
终归单人心
终归单人心 2021-01-16 22:39

When I try to run my iOS App in Xcode in app:

dyld: Library not loaded: @rpath/Alamofire.framework/Alamofire
  Referenced from: /private/var/mobile/Container         


        
3条回答
  •  余生分开走
    2021-01-16 23:05

    Try to link all your dependencies as static libraries rather than frameworks (for example, if you're using Cocoapods you can remove use_frameworks! from your Podfile), that should fix the issue for now. check below link for more details https://github.com/Alamofire/Alamofire/issues/3051#issuecomment-580139830

提交回复
热议问题