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
You will see your device listed in Firebase DebugView
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).