我面临一个问题,我需要为我的iOS应用程序使用FirebaseRemoteConfig。我包括以下吊舱:
pod 'Firebase/RemoteConfig'
现在,当我在终端上运行命令时:
pod install
它向我显示了错误:
Framework not found 'Protobuf'
在此之前项目运行良好,这确实令人沮丧。我已经尝试过堆栈溢出的一些建议,但无法解决问题。
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
# ignore all warnings from all pods
inhibit_all_warnings!
use_frameworks!
target 'S****k' do
pod 'AFNetworking', '~> 2.6'
pod 'TPKeyboardAvoiding', '~> 1.2'
pod 'SVProgressHUD', '~> 1.1'
pod 'Google/SignIn'
pod 'Mantle', '~> 2.0'
pod 'FBSDKCoreKit'#, '~> 4.8'
pod 'FBSDKLoginKit'#, '~> 4.8'
pod 'GooglePlaces', '~> 3.0.0'
#pod 'Firebase/Core'
pod 'GoogleTagManager'
pod 'GoogleIDFASupport'
pod 'Fabric'
pod 'Crashlytics'
pod 'AppsFlyerFramework'
pod 'KissXML'
pod 'GoogleMaps', '~> 3.0.0'
pod 'AutoScrollLabel'
pod "CleverTap-iOS-SDK"
pod 'IQKeyboardManager'
pod 'TrueSDK'
pod 'HyperSDK', '0.2.90'
pod 'ExpressCheckout'
#pod "AlignedCollectionViewFlowLayout"
pod 'UICollectionViewLeftAlignedLayout'
#pod 'TGLParallaxCarousel'
pod "JuspaySafeBrowser"
pod 'Firebase/RemoteConfig'
答案 0 :(得分:2)
请备份您的项目
我们转到“您的项目”->构建设置
在这里找到“其他链接器标记”并打开它
删除(单击“-”符号)字符串“ Protobuf”和字符串“ framework”在“ Protobuf”上方
清理构建文件夹(Command + SHIFT + K)并重新构建
仅此而已