我正在开发Google Analytics,谷歌表示我需要安装Firebase来处理Google Analytics操作。
我通过Cocoapods和firebase.google.com提供的导入属性列表(.plist)文件安装了Firebase。
但是当我尝试按import Firebase
导入Firebase模块时,Xcode表示没有这样的模块,自动完成建议import FirebaseAnalytics
。
如果我使用FirebaseAnalytics模块,则会出现以下错误。我查看了this个问题,但没有一个答案解决了我的问题。
Podfile:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
target 'MyApp do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyApp
pod 'Firebase/Core'
target 'MyAppTests' do
pod 'Firebase/Core'
inherit! :search_paths
# Pods for testing
end
target 'MyAppUITests' do
inherit! :search_paths
# Pods for testing
end
end
答案 0 :(得分:1)
尝试清理派生数据文件夹。 (See this article for help.)此外,删除pod并将其重新添加可能会有所帮助。 :)
BTW:您是否在AppDelegate.swift中实现了FIRApp.configure()
?