1

I write swift language and use firebase. when I wrote code in Xcode and built it, it show error message "ld: framework not found GRPCClient". I have tried many time to solve it but I can't.

Please help me to solve an issue. see the message in picture below. enter image description here

Thanks in advance,

1 Answers1

4

Likely a similar answer as Framework not found GoogleToolboxForMac.

After pod install or pod update, you likely saw:

[!] Please close any current Xcode sessions and use MyApp.xcworkspace for this project from now on.

Open the .xcworkspace file with Xcode instead of the .xcodeproj file.

Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139
  • 2
    I add Firestore to my Cocoapod to an existing project, and am having the same issue. Impossible to compile my project. It's not a problem withb .xcworkspace since I have been using it for my project since I added Cocoapod. – jamesthakid Oct 22 '17 at 12:55
  • "Open the .xcworkspace file with Xcode instead of the .xcodeproj file." <= This. Thank you! – aero Jan 24 '18 at 19:30