我使用
配置了我的应用FirebaseApp.configure();
在我的Appdelegate中启动了应用程序。
然后我需要添加数据库功能,所以我删除了上面的代码(因为它崩溃并告诉我已经配置了应用程序)并添加了:
AppDelegate.ref = Database.database().reference()
但后来我收到了这个错误:
must call `[FIRApp configure]` (`FirebaseApp.configure()` in Swift) before using Firebase Database.'
所以,我现在卡住了,因为如果我添加configure()
我的应用程序只是崩溃,错误告诉我应用程序已经配置。
我必须重新配置吗?如果是这样,我怎么去做,因为文档中没有任何内容?