Why don't custom Firebase analytics events appear on the control panel?

I have included firebase in my android app. I send custom events as follows:

 Bundle bundle = new Bundle();
        bundle.putString("First Category", "First catValue");
        bundle.putString("sub Cat", "sub CatValue");
        bundle.putLong(FirebaseAnalytics.Param.VALUE, "value");
        firebaseAnalytics.logEvent("My Custom Event", bundle);

None of my custom events appear on the Events tab in the firebase analytics dashboard.

I already looked at some questions that are already asked in this way: Android Firebase Analytics custom event reports in the console

But I could not solve my problem, because I tried some of the suggestions there, for example, it was suggested to test more than 10 users in order to be able to create custom events that I made, but nothing is displayed on the events tab.

I debugged the following commands:

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

, firebase.

? - firebase ?

:

:

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

Name must consist of letters, digits or _ (underscores).

, :

 Bundle bundle = new Bundle();
            bundle.putString("First_Category", "First_catValue");
            bundle.putString("sub_Cat", "sub_CatValue");
            bundle.putLong(FirebaseAnalytics.Param.VALUE, "value");
            firebaseAnalytics.logEvent("My_Custom_Event", bundle);

https://support.google.com/firebase/answer/7201382?hl=en&utm_id=ad, adbitx , .

+6
2

. , Firebase Analytics, DebugView, . 10 , .

+4

:

:

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

,

Name must consist of letters, digits or _ (underscores).

, :

 Bundle bundle = new Bundle();
            bundle.putString("First_Category", "First_catValue");
            bundle.putString("sub_Cat", "sub_CatValue");
            bundle.putLong(FirebaseAnalytics.Param.VALUE, "value");
            firebaseAnalytics.logEvent("My_Custom_Event", bundle);

https://support.google.com/firebase/answer/7201382?hl=en&utm_id=ad, adbitx , .

+4

Source: https://habr.com/ru/post/1016773/


All Articles