Firebase iOS Debug Console not logging anything

后端 未结 9 1733
南旧
南旧 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 recently had an issue where the Xcode console said everything was fine, and all was being logged and sent, and I had the "-FIRDebugEnabled" and I tried all other suggestions in this thread, but nothing worked. Nothing was being sent to Firebase's DebugView.

    Looking through my git-history, I determined the issue occurred due to a pod update, and the solution to my issue was another pod update.

    I don't know which pod had failed, but I suspect either Moya, Alamofire or FirebaseAnalytics... after this, I'm strongly considering locking my pod-versions.

    0 讨论(0)
  • 2021-01-01 22:29

    I also have the same problems.

    1 check your Cocopods' s Firebase version.

    • use pod update Firebase
    • List item
    • make sure that is the latest

    2 open debug mode

    • In the Arguments Passed On Launch part
    • add - FIRDebugEnabled.
    0 讨论(0)
  • 2021-01-01 22:29

    Now it doesn't matter much but still for the people who are getting errors on this issue. Debug mode of firebase analytics does not work sometimes due to issue in GoogleServices-Info.plist file Simply makes these 2 changes.

    1. Set IS_ANALYTICS_ENABLED to YES
    2. Set FIREBASE_ANALYTICS_COLLECTION_DEACTIVATE to NO
    0 讨论(0)
提交回复
热议问题