firebase-analytics

Enable debug logging firebase analytics

久未见 提交于 2019-12-01 02:51:23
I'm trying to enable debug logging for Firebase analytics in Android Studio. I have tried following the instructions found here and still don't see the logs I expect: https://firebase.google.com/docs/analytics/android/events#log_events When I run the commands described in the link (and shown above) in the terminal within Android Studio this is the output I see: --------- beginning of system --------- beginning of crash --------- beginning of main 05-19 20:14:12.794 I/FA ( 3083): App measurement is starting up, version: 9080 05-19 20:14:12.794 I/FA ( 3083): To enable debug logging run: adb

Enable debug logging firebase analytics

╄→гoц情女王★ 提交于 2019-11-30 22:32:24
问题 I'm trying to enable debug logging for Firebase analytics in Android Studio. I have tried following the instructions found here and still don't see the logs I expect: https://firebase.google.com/docs/analytics/android/events#log_events When I run the commands described in the link (and shown above) in the terminal within Android Studio this is the output I see: --------- beginning of system --------- beginning of crash --------- beginning of main 05-19 20:14:12.794 I/FA ( 3083): App

All firebase libraries must be either above or below 14.0.0

六眼飞鱼酱① 提交于 2019-11-30 16:52:51
I have checked my app build.gradle file and these are the only lines that are related to firebase in them /*** * Firebase */ implementation 'com.google.firebase:firebase-core:15.0.0' implementation 'com.google.firebase:firebase-messaging:15.0.0' implementation('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') { transitive = true } implementation 'com.google.firebase:firebase-ads:15.0.0' I do not have any library that makes use of firebase so I don't think there can be an issue with a library using an older version. The problem is I can't build gradle, clean project or rebuild project with

Select several event params in a single row for Firebase events stored in Google BigQuery

て烟熏妆下的殇ゞ 提交于 2019-11-30 15:44:02
问题 I'm trying to perform a very simple query for Firebase events stored in Google BigQuery but I´m not able to find a way to do it. In the Android app, I´m logging an event like this: Bundle params = new Bundle(); params.putInt("productID", productId); params.putInt(FirebaseAnalytics.Param.VALUE, value); firebaseAnalytics.logEvent("productEvent", params); So, in BigQuery I have something like this: ___________________ _______________________ ____________________________ | event_dim.name | event

How to select multiple custom Firebase event parameters in BigQuery?

安稳与你 提交于 2019-11-30 12:54:37
I exported Firebase events to BigQuery and now I'm trying to select two parameters from a certain event. Here is the query for selecting one parameter: select event_dim.params.value.int_value as level_id from [com_company_appname_ANDROID.app_events_20161210] where event_dim.name = "level_replays_until_first_victory" and event_dim.params.key = "level_id" Both parameters are int values, name of the first parameter is level_id , and the second parameter is count . What I would like is to show is level_id in first column and count in second column. Below will work with BigQuery Standard SQL SELECT

Firebase Analytics, unable to view the values that are passed in the event

ε祈祈猫儿з 提交于 2019-11-30 10:01:48
问题 I am implementing Firebase Analytics in my app. Everything works fine, I am getting the logged events in my Firebase console, but I am having trouble with the bundle data (Params) that are passed during the logging of event. Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.VALUE, "event Value"); firebaseAnalytics.logEvent(FirebaseAnalyticsConstants.ON_VIEW_EVENT, bundle); I want to differentiate based on the VALUE param. 回答1: The VALUE parameter is meant to be numeric.

Crash when Use Firebase Analytics in a project SDK Cocoa Touch Framework

帅比萌擦擦* 提交于 2019-11-30 09:31:09
问题 I created a CocoaTouch Framework SDK, which uses the Firebase library for checking. However, I have the following problem: - Added Firebase Analytics to the SDK, build successful, however if in SDK there is a function call in the class FIRAnalytics , for example: [FIRAnalytics logEventWithName:@"share_image" parameters:@{ @"name": name, @"full_text": text }]; Then in Project A(example) using our SDK crashed in the function: - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]

Firebase Analytics upload delay

巧了我就是萌 提交于 2019-11-30 09:07:54
Is there any way to increase Firebase Analytics upload rate for logged events on android? Currently it uploads them every hour and it is too slow for testing purposes. I found references to following keys (with hardcoded defaults) in jars, but no idea how to change them. "measurement.upload.backoff_period", 43200000L "measurement.upload.window_interval", 3600000L "measurement.upload.interval", 3600000L There is currently no way to manually override these settings. However, we recognize the need to see your reporting more quickly and we hope to address this need soon. In the meantime, you can

Firebase Analytics event logging error

◇◆丶佛笑我妖孽 提交于 2019-11-30 08:09:50
问题 I use Firebase Analytics and my app logs some events with this code: Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.ITEM_ID, "SOME_ID") bundle.putString(FirebaseAnalytics.Param.CONTENT_TYPE, "SOME_TYPE"); mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle); And it seem to work well most of the time. In logcat I have something like this: Logging event (FE): select_content, Bundle[{_o=app, content_type=SOME_TYPE, item_id=SOME_ID}] But for some

Firebase Analytics events from iOS not showing up

青春壹個敷衍的年華 提交于 2019-11-30 08:08:44
I am testing the new Google-powered Firebase, and have implemented remote notifications and crash reporting. I am, however, having massive problems with getting Analytics to work. I track events with FIRAnalytics.logEventWithName(...) and save user pproperties with FIRAnalytics.setUserPropertyString(...) . However, no matter what I do, no data shows up in the Firebase Analytics Console. Well, I do receive some events, but those are not sent by me (like first_open and session_start ). Also, this data seems to drop in after a very long time. Furthermore, when I track events and save user data, I