Pod Error in Xcode “Id: framework not found Pods”

后端 未结 5 456
余生分开走
余生分开走 2020-12-04 19:22

I am trying to clone a project from a bitbucket repository and am getting an error Id: framework not found Pods clang: error: linker command failed with exit code 1 (u

5条回答
  •  余生分开走
    2020-12-04 20:13

    My issues is when i ran test i got this error. Because i just install it in my

    target 'Project' do
       pod 'xxx'
    end
    

    You should also add it into your test target:

    target 'ProjectTests' do
       pod 'xxx'
    end
    

提交回复
热议问题