お世話になります。
pod installを行うと、下記のエラーが消えなくなり、
ずっとハマっています。
色々調べたのですが、一切状況がよくなりません。
どうか解決方法をご教示いただけますと幸いです。
# エラー内容 ld: framework not found FirebaseAuthUI clang: error: linker command failed with exit code 1 (use -v to see invocation)
# Podfile # Uncomment the next line to define a global platform for your project platform :ios, '12.1' target 'KBC' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for KBC pod 'Firebase', '6.34.0' pod 'Firebase/Core' pod 'Firebase/Auth' pod 'FirebaseUI/Auth' pod 'FBSDKCoreKit', '4.36.0' pod 'FBSDKLoginKit', '4.36.0' pod 'FacebookCore', '0.4' pod 'FacebookLogin', '0.4' pod 'GoogleSignIn', '4.4.0' # pod 'Charts' # pod 'BTNavigationDropdownMenu' target 'KBCTests' do inherit! :search_paths # Pods for testing end target 'KBCUITests' do inherit! :search_paths # Pods for testing end end
試した事
・どうやらFirebaseAuthUIはFrameworkではなくBundleとして構築されているようで、
FirebaseUIの中にFirebaseAuthUIがありました。
そのため、全てのターゲットのFramework Search Pathsに、
下記のようにいくつかパスを書いてみたのですが、解決しませんでした
"${PODS_ROOT}/FirebaseUI/FirebaseUI.Frameworks" "${PODS_ROOT}/FirebaseUI/Auth" "${PODS_ROOT}/FirebaseUI" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseUI/FirebaseUI.framework" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseUI/Auth"
・DerivedDataを削除した後にビルド
sudo rm -rf ~/Library/Developer/Xcode/DerivedData/*
・下記URLを参考にBuild Active Architecture Onlyの統一
[XCode][Cocoapods]ビルドエラー時の対処法
あなたの回答
tips
プレビュー