在iOS上安装Firebase / Messaging Pod后,出现错误:
Include of non-modular header inside framework module 'FirebaseAnalytics'
在行上的
FIRAnalyticsConfiguration.h
中#import <FirebaseCore/FIRAnalyticsConfiguration.h>
是什么赋予了?
最佳答案
几分钟前,我遇到了同样的问题。通过执行以下操作,我能够成功解决此问题:
Podfile
中,取消注释显示use_frameworks!
的行pod install
我希望这有帮助。