我正在尝试从FirebaseCrashlytics
升级到Crashlytics
。我可以导入Firebase,但不能导入FirebaseCrashlytics。这是我的Podfile:
platform :ios, :deployment_target => "9.0"
def shared_pods
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
pod 'SVProgressHUD'
pod 'IGHTMLQuery'
pod 'OpenTok', '~> 2.16.3'
end
target 'MyApp' do
#use_frameworks!
shared_pods
end
我不能取消对use_frameworks的注释!因为它破坏了我已经在使用的其他豆荚。
我的桥接头:
#import "FirebaseCrashlytics/FirebaseCrashlytics.h"
#import "FirebaseCore/FirebaseCore.h"
这就是我得到的:
答案 0 :(得分:1)
根据firebase文档,您只需导入Firebase,而不是FirebaseCrashlytics。
https://firebase.google.com/docs/crashlytics/get-started?platform=ios