flutter ios 中的 firebase_storage pod 错误

问题描述 投票:0回答:1

我正在将图像上传到 firebase。它在 Android 上运行良好,但在 iOS 中会出现运行时错误并且应用程序崩溃。

这是导致错误的代码:

appCheck = ComponentType<AppCheckInterop>.instance(for: AppCheckInterop.self,
                                                   in: app.container)!

错误是:

FirebaseStorage/Storage.swift:294:致命错误:在解包可选值时意外发现 nil

在 Firebase 上上传图像而不导致应用程序崩溃的解决方案

ios flutter cocoapods firebase-storage
1个回答
0
投票

我已经找到解决办法了

添加:'等待 FirebaseAppCheck.instance.activate();' 在你的主要

对我有用

© www.soinside.com 2019 - 2024. All rights reserved.