在 iOS 上安装 Firebase/Messaging Pod 后出现错误:
Include of non-modular header inside framework module 'FirebaseAnalytics'
在FIRAnalyticsConfiguration.h 就行了
#import <FirebaseCore/FIRAnalyticsConfiguration.h>
什么给了?
Best Answer-推荐答案 strong>
几分钟前我遇到了同样的问题。我能够通过执行以下操作成功解决它:
- 在您的
Podfile 中,取消注释 use_frameworks! 行
- 运行
pod install
- 在 Xcode 中,执行清理 (⌘+K) 和构建 (⌘+B)
我希望这会有所帮助。
关于ios - iOS FirebaseAnalytics Pod 中的非模块 header ,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39936214/
|