I am following an exercise from a Google CodeLab on Firebase with Objective C that is published on GitHub, and after downloading the project, installing Cocoa and the update pods I get the following error when I open the project for the first time with Xcode:
ld: library not found for -lPods-FriendlyChatObjC clang: error: linker command failed with exit code 1 (use -v to see invocation)
Attached the image:
I already did clean and rebuild of the project, but the error remains. Any suggestion?
What file are you opening in Xcode?
Once you have installed the pods with:
a file is generated
NombreDelProyecto.xcworkspace
, which contains your project (NombreDelProyecto.xcproject
) and all the pods your project depends on. You must open said 'workspace' and compile. ?