Reputation: 23
I built an app 2 months ago and now I want to work with it again. I opened up the project today and I am getting the error as follows:
Linker command failed with exit code 1
Why do I get this error?
Upvotes: 0
Views: 754
Reputation: 7373
The linker error is because you can't find pods. Try the following:
pod install
If that doesn't work:
pod update
If that still doesn't work:
pod update
If that STILL doesn't work... it could be your project's deployment target, make sure the targetted version is the same in both your project and the podfile.
Upvotes: 1
Reputation: 844
As the picture say, can't find the pods. Just simply reinstall them with pod update
. And ofcourse, don't forget to use .xworkspace files.
Upvotes: 0