Firebase Analytics Debug View does not show anything

前端 未结 8 1082
我寻月下人不归
我寻月下人不归 2020-12-13 09:04

I linked my Android app with Firebase using Android Studio Which created and set my google-service.json into my project.

When i debug my event logging in logcat i go

相关标签:
8条回答
  • 2020-12-13 09:29
    1. Run your app in debug mode
    2. Goto Developer Options -> Select debug app -> Select

    You will see your device listed in Firebase DebugView

    0 讨论(0)
  • 2020-12-13 09:30

    Enabling debug logging is different from enabling debug mode. As Frank van Puffelen suggested in his comment, to enable debug mode you need to set "debug.firebase.analytics.app" property to your app package name.

    You can do this using adb with the following command:

    adb shell setprop debug.firebase.analytics.app "your.app.package.name"

    You can find the package name of your app inside your AndroidManifest.xml as the package attribute on the manifest element (first element in the xml document).

    0 讨论(0)
提交回复
热议问题