"pod update"를 통해 Firebase를 업데이트 한 후 다음과 같은 오류가 발생했습니다.
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)
여기 내 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
아무도이 오류에 대해 알고 있습니까?
GoogleToolboxForMac과 Firebase의 관계를 찾고 있지만 약간의 정보 만 얻습니다.
참고로 Swift 2.3과 Firebase 3.8.0을 사용합니다.
도움을 주시면 감사하겠습니다. 감사!