Firebaseの導入でエラーが発生してしまいます。
Undefined symbols for architecture arm64:
"_GULResetLogger", referenced from:
_FIRResetLogger in FirebaseCore(FIRLogger.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Undefined symbol: _GULResetLogger
今回導入が初めてなので、どこから調べるべきなのかも見当がつきません。
こんな情報しかありませんが、よろしくお願いいたします。
他に必要な情報があれば、おっしゃってください。
Firebaseの導入はCocoaPods経由でしょうか?それともCarthage経由でしょうか?
前者であれば Podfile、後者であれば Cartfile ファイルの内容を追記していただけると確認を取りやすいです。
CocoaPods経由です。
Google Analyticsの導入手順の通りにやっていたので、Podfileは以下の通りとなります。
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'xxxxxxx' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for xxxxxxxx
# add the Firebase pod for Google Analytics
pod 'Firebase/Analytics'
# add pods for any other desired Firebase products
# https://firebase.google.com/docs/ios/setup#available-pods
end