Command lines for firebase analytics DebugView for Android

View events in the Android Studio debug log.The following commands will display the events in the Android Studio logcat, helping you immediately verify that events are being sent.

adb shell setprop log.tag.FA VERBOSE
adb shell setprop log.tag.FA-SVC VERBOSE
adb logcat -v time -s FA FA-SVC

Debug event in Firebase DebugView. There is a debug page page in firebase console where you can see the live events, Firebase -> Analytics -> DebugView. To see the events showing up in Firebase analytics DebugView, the device has to be registered with the following command lines

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

The debug mode behavior persists until you explicitly disable Debug mode by executing the following command.

adb shell setprop debug.firebase.analytics.app .none.

References:

https://firebase.google.com/docs/analytics/debugview

https://firebase.google.com/docs/analytics/events?platform=android#view_events_in_the_android_studio_debug_log

Search within Codexpedia

Custom Search

Search the entire web

Custom Search