1

I have implemented firebase in my project, but I am not getting an entry in firebase console. I have been trying so many different ways. Anybody have any idea what's going wrong? i have implement like this.

firebaseAnalytics com.google.firebase.analytics.FirebaseAnalytics.getInstance(c);
    Bundle bundle = new Bundle();
  //  bundle.putString("Category", ""+Category);
    bundle.putString(FirebaseAnalytics.Param.ITEM_ID, Category);
    bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, Category);
    bundle.putString(FirebaseAnalytics.Param.CONTENT_TYPE, Category1+" Store");
    firebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle);
    firebaseAnalytics.setAnalyticsCollectionEnabled(true);`
h_patel
  • 744
  • 5
  • 16

1 Answers1

4

You can view aggregrated statistics about your events in the Firebase console dashboards. These dashboards update periodically throughout the day.

For immediate testing, you can enable verbose logging to monitor logging of events by the SDK to help verify that events are being logged properly. This includes both automatically and manually logged events.

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

This command displays your events in the Android Studio logcat, helping you immediately verify that events are being sent.

For more information, visit the Firebase Analytics documentation for Android.

looptheloop88
  • 3,026
  • 17
  • 20
  • getting this error "'adb' is not recognized as an internal or external command, operable program or batch file" – h_patel Aug 27 '16 at 12:19
  • @Himani - Check this link http://stackoverflow.com/questions/20564514/adb-is-not-recognized-as-an-internal-or-external-command-operable-program-or – looptheloop88 Aug 29 '16 at 07:42