2

I followed the instructions at Firebase Analytics quick start, but even after 24 hours, no user session was registered at Firebase Console.

I know that my google-services.json is correct because Firebase Auth is working properly (both Google and Facebook users are visible on the dashboard).

My Gradle dependencies are:

dependencies {
    compile 'com.android.support:appcompat-v7:24.0.0'
    compile 'com.android.support:design:24.0.0'
    compile 'com.facebook.android:facebook-android-sdk:4.14.1'
    compile 'com.google.android.gms:play-services-auth:9.2.1'
    compile 'com.google.android.gms:play-services-maps:9.2.1'
    compile 'com.google.code.gson:gson:2.1'
    compile 'com.google.firebase:firebase-auth:9.2.1'
    compile 'com.google.firebase:firebase-core:9.2.1'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
}
3

2 Answers 2

2

At August, 1st 2016, Google Developers upgraded Firebase quickstart examples on GitHub

Firebase version was upgraded from 9.2.1 to 9.4.0, which seems to have fixed my Analytics update issues.

Sign up to request clarification or add additional context in comments.

Comments

1

I was facing same problem what i missed in my project gradle file add this dependency

classpath 'com.google.gms:google-services:3.0.0'

and in my android gradle or you can say app gradle i add this in last line

apply plugin: 'com.google.gms.google-services'

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.