Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Framework not found GoogleToolboxForMac

After I update my Firebase via "pod update", I got error like this :

ld: warning: directory not found for option '-F/Users/bennysantoso/Library/Developer/Xcode/DerivedData/FCM-atfcxuircoryufazlomgwfgmvaqm/Build/Products/Debug-iphonesimulator/GoogleToolboxForMac'
ld: framework not found GoogleToolboxForMac
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Here my Podfile :

# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
pod 'Firebase/Core'
pod 'Firebase/Messaging'

target 'BB' do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for BB

  target 'BBTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'BBUITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

Does anybody know about this error?

I seek out relationships GoogleToolboxForMac and Firebase, but I just get a little bit of information.

FYI, I use Swift 2.3 and Firebase 3.8.0.

I will be grateful for any help you can provide. Thanks!

like image 678
bennysantoso Avatar asked Nov 01 '16 10:11

bennysantoso


4 Answers

I had the same error. Once you install the pods, you'll see the following message.

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

I didn't notice this for the first time and was trying to build the project using the regular xcodeproj file. After I saw this message, I opened the right project and it worked fine.

Once you open this project you'll notice that you have two subprojects. One would be your project, and another would be the Pods project.

like image 130
Izaaz Yunus Avatar answered Nov 19 '22 23:11

Izaaz Yunus


Framework Not Found

When using Pods, we usually face this issue.

There are two main reasons for this

  1. When we open the .xcodeproj file instead of .xcworkspace as mentioned by izaaz-yunus in this Answer

  2. When Build Active Architecture Only is set to Yes in Build Settings

    This applies to the projects target and also to all the targets in the pod project

Main Project Screenshot Set Build Active Architecture Only to No

Pod Project Screenshot enter image description here

  1. Select Build Settings (of main project, pod project both)
  2. Select each Target one by one
  3. Set Build Active Architectures to No for each target

Finally clean and rebuild your project.

like image 36
Vinay Kumar Avatar answered Nov 19 '22 23:11

Vinay Kumar


In my case all integration are well-done and also did try so many time to remove and reinstall pod but did not get success.

Finally try with below step

Projetc->Manage Schemes -> Select check box "Pods-MyProjectName"

And get success.

like image 18
iPatel Avatar answered Nov 19 '22 22:11

iPatel


GoogleToolboxForMac is a dependency of Firebase/Messaging. Details in the podspec. When doing "pod update", Cocoapods should set up your workspace to build and link GoogleToolboxForMac.

It sounds like something about your workspace is in a bad state. Does Product -> Clean help? What about deleting Derived Data and the ModuleCache (Xcode -> Preferences -> Locations -> Derived Data)?

It shouldn't be necessary, but you could also try explicitly adding pod 'GoogleToolboxForMac/Logger' to your Podfile.

like image 15
Paul Beusterien Avatar answered Nov 19 '22 21:11

Paul Beusterien