I'm facing an issue while building my iOS project in Xcode. The error message is:
Library 'FirebaseCore' not found.
Linker command failed with exit code 1 (use -v to see invocation).
I have already tried the following:
- Running pod install and ensuring FirebaseCore is listed in Podfile.lock.
- Cleaning the build folder (Cmd + Shift + K) and restarting Xcode.
- Checking that I'm opening the .xcworkspace file instead of .xcodeproj.
- Ensuring my Pods directory is included in the project's Framework Search Paths.
- Running
pod deintegrateandpod installagain.
My CocoaPods version: 1.16.2.
Despite these steps, the issue persists. The same project works fine in other Mac systems. Any suggestions on how to resolve this?
-vto see what call is invoking it and the information associated with that call to further debug the issue?