Home:ALL Converter>Firebase and Fabric Integration: No detectable Fabric Event in Firebase

Firebase and Fabric Integration: No detectable Fabric Event in Firebase

Ask Time:2017-11-14T19:51:02         Author:You Qi

Json Formatter

I have integrated my Firebase and Fabric projects since it's available few days ago.

I have such kind of fabric events tracking configured in my code:

Answers.getInstance().logCustom(new CustomEvent("Entity Click").putCustomAttribute("domain", entity.getDomain()).putCustomAttribute("entity", entity.entityId));

But in my Firebase console under Analytics -> Events and Analytics -> StreamView, I can't seem to see Fabric events get integrated over. All I can see is the normal generic Firebase events:

ad_click
ad_impression
app_clear_data
app_remove
app_update
first_open
os_update
screen_view
session_start

Did I misunderstand something?

UPDATE:

Portion of my build.gradle file:

classpath 'io.fabric.tools:gradle:1.24.4'

compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
    transitive = true;
}

#I did not use firebase-core
compile 'com.google.firebase:firebase-config:11.6.0'
compile 'com.google.firebase:firebase-ads:11.6.0'
compile 'com.google.firebase:firebase-messaging:11.6.0'

UPDATE 2:

In Fabric Console, Tools -> Firebase shows the linking in green:

In Fabric Console, Tools -> Firebase

UPDATE 3:

I'm using the new Firebase UI. Under Spark Plan, did not currently link to Big Query.

New Firebase look

Author:You Qi,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/47285126/firebase-and-fabric-integration-no-detectable-fabric-event-in-firebase
yy