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

后端 未结 5 443
余生分开走
余生分开走 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 19:58

    Sometimes after renaming a target or moving something, you can corrupt your pods installation. Luckily, there's an easier way to fix it than sudo make install's solution.

    1. Run pod deintegrate to remove any trace of Cocoapods from your project.
    2. Run pod install again to add it all back.

    That's it, fixed.

提交回复
热议问题