Reputation: 5120
I used below firebase code:
int month = (int)[components month]; //gives you month
int day = (int)[components day]; //gives you day
int year = (int)[components year];
NSString * obj = @"Date : ";
NSString * key = [NSString stringWithFormat:@"%d/%d/%d",day,month,year];
[dictionary setObject:obj forKey:key];
[FIRAnalytics logEventWithName:@"Game Launch :" parameters:dictionary];
[FIRAnalytics setAnalyticsCollectionEnabled:true];
In firebase dashboard, no where I see message Game Launch where this log comes?
Upvotes: 0
Views: 1192
Reputation: 1248
To see events real time in the Firebase StreamView or DebugView
To see events in the Firebase Dashboard
In Firebase Dashboard won't show events in real-time.
You can view aggregrated statistics about your events in the Firebase console dashboards. These dashboards update periodically throughout the day. For immediate testing, use the logcat output as described in the previous section.
See https://firebase.google.com/docs/analytics/ios/events#view_events_in_the_dashboard
Upvotes: 2