本文主要是介绍flutter ios Firebase 消息通知错误 I-COR000005,I-FCM001000 解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
*前提是已经 使用firebase-tools 已经给 Flutter 加入了 消息通知相关配置。教程>>
一、I-COR000005
10.22.0 - [FirebaseCore][I-COR000005] No app has been configured yet.
import Firebase....FirebaseApp.configure()
10.22.0 - [FirebaseMessaging][I-FCM001000] FIRMessaging Remote Notifications proxy enabled, will swizzle remote notification receiver handlers. If you'd prefer to manually integrate Firebase Messaging, add "FirebaseAppDelegateProxyEnabled" to your Info.plist, and set it to NO. Follow the instructions at:
https://firebase.google.com/docs/cloud-messaging/ios/client#method_swizzling_in_firebase_messaging
to ensure proper integration.
二、I-FCM001000
在 info.plist 随意找个位置, 添加下面配置
<key>FirebaseAppDelegateProxyEnabled</key>
<false/>
这篇关于flutter ios Firebase 消息通知错误 I-COR000005,I-FCM001000 解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!