I am having some trouble integrating my project with Google Firebase analytics. I have followed all the instructions and the integration seems to be complete as I do get Crash reports correctly but the Analytics page is empty.
My build.gradle contents:
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.firebase:firebase-crash:10.2.0'
compile 'com.google.android.gms:play-services:10.2.0'
compile 'com.google.android.gms:play-services-wearable:10.2.0'
The logs seem to suggest its sending the reports.
I/FirebaseInitProvider: FirebaseApp initialization successful
I/FA: App measurement is starting up, version: 10298
I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
I/FA: To enable faster debug mode event logging run:
adb shell setprop debug.firebase.analytics.app
D/FA: Debug-level message logging enabled
D/FA: Connected to remote service
D/FA: Logging event (FE): select_content, Bundle[{item_name=Demo mode entered, _o=app, _sc=SeatsActivity, _si=-6324821531545085450, content_type=image, item_id=Demo}]
D/FA: Connected to remote service
D/FA: Logging event (FE): select_content, Bundle[{item_name=Demo mode exited, _o=app, _sc=SeatsActivity, _si=-6324821531545085450, content_type=image, item_id=Demo}]
D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=14578, _sc=SeatsActivity, _si=-6324821531545085450}]
D/FA: Logging event (FE): select_content, Bundle[{item_name=User Authenticated, _o=app, content_type=image, item_id=Authentication}]
D/FA: Connected to remote service
D/FA: Logging event (FE): _e, Bundle[{_o=auto, _et=11345, _sc=AuthenticationActivity, _si=-6324821531545085449}]
D/FA: Connected to remote service
The image seems to suggest there is some analytics but when I go to the Analytics tab its blank. I have waited for couple of days after sending the reports but still the page is blank. Am I missing anything?