Firebase iOS Debug Console not logging anything

后端 未结 9 1739
南旧
南旧 2021-01-01 21:25

I have setup firebase in both the console and in the app. Everything configures correctly, and events appear to be logging in the app.

Output to console:

<         


        
9条回答
  •  -上瘾入骨i
    2021-01-01 22:10

    I made it possible by writing the following:

    func application(_ application: UIApplication, didFinishLaunchingWithOptions, ...) {
        // some other initialization
    
        FirebaseApp.configure()
        Firebase.Analytics.setAnalyticsCollectionEnabled(true)
    }
    

提交回复
热议问题