firebase-analytics

Turning Firebase Analytics on on Xcode

萝らか妹 提交于 2020-06-24 02:56:07
问题 I am trying to test the implementation of my Firebase Analytics. In their documentation they state that: Enable debug mode by passing the -FIRDebugEnabled argument to the application. You can add this argument in the application’s Xcode scheme. When debug mode is enabled via -FIRDebugEnabled, further executions of the application will also be in debug mode. In order to return to default mode, you must explicitly disable the debug mode with the application argument -FIRDebugDisabled.

Firebase analytics log events with cloud functions [duplicate]

帅比萌擦擦* 提交于 2020-06-20 16:36:48
问题 This question already has an answer here : Firebase - log events from server side cloud functions [duplicate] (1 answer) Closed 2 years ago . I'm using google cloud functions as backend to process my app orders and connect with gateway payment to accept/deny purchases... Everything is working fine. but i would like to register the purchase events to firebase analytics so i can monitore all app revenue in the same dashboard in firebase on android I can do something like: Bundle bundle = new

Firebase analytics log events with cloud functions [duplicate]

為{幸葍}努か 提交于 2020-06-20 16:34:16
问题 This question already has an answer here : Firebase - log events from server side cloud functions [duplicate] (1 answer) Closed 2 years ago . I'm using google cloud functions as backend to process my app orders and connect with gateway payment to accept/deny purchases... Everything is working fine. but i would like to register the purchase events to firebase analytics so i can monitore all app revenue in the same dashboard in firebase on android I can do something like: Bundle bundle = new

Is this a correct and efficient way to implement Firebase Analytics?

核能气质少年 提交于 2020-06-01 07:22:25
问题 I went through the documentation and some tutorials, but I still don't feel confident that I understand what parts of the code are necessary and what are just an example. Because the analytics don't update immediately and could take a few days if not more then I can't really check if I am implementing it correctly. I would appreciate if someone could tell me if I'm doing it right and if not, what am I doing wrong. I have about 10 actions I want to track in my app. All the fragments in my app

Firebase isn't reporting crashes related to OkHttp

对着背影说爱祢 提交于 2020-05-26 10:19:12
问题 I was migrating my code from Google analytics to Firebase, following problem I'm facing Some of the custom events show correct value while others not although code used are same in all cases. Can provide code if required. Update : Above is solved, I was sending large data so its just omitted them. Prior to using OkHttp(using Android network library and Asynctask) firebase shows correct line number in crash reports but not after using OkHttp, I can confirm that I have uploaded correct mapping

Firebase DebugView not showing events on Android

笑着哭i 提交于 2020-05-24 04:38:05
问题 Update: seems like it was a temporary issue on firebase and it works now. Original post: I configured my app to work with Firebase analytics and trying to see the events in the DebugView dashboard. This worked fine for me on the first day - some of the times it didn't recognise the device and I needed to refresh, but mostly it was ok. Now when I start my app is see this line in the log I/FA: Faster debug mode event logging enabled. To disable, run: adb shell setprop debug.firebase.analytics

Firebase iOS Debug Console not logging anything

蓝咒 提交于 2020-05-23 04:26:06
问题 I have setup firebase in both the console and in the app. Everything configures correctly, and events appear to be logging in the app. Output to console: <FIRAnalytics/DEBUG> Logging event: origin, name, params: app, log_something, { "_o" = app; "full_text" = khbsdpibdsjl; name = lwkjbgskljsavdkjl; } I have the debug flag enabled: -FIRDebugEnabled . Yet in the debugging events console there is NOTHING. I see no devices available, no events being logged, absolutely 0 indication of anything

Exclude testing device from Firebase Analytics logging

|▌冷眼眸甩不掉的悲伤 提交于 2020-05-11 04:13:06
问题 I am sure that Firebase is counting all my development work too in its analytics. I open my app like hundred times a day to debug and test on a few devices, it's really skewing up my readings. I have used a function to get me a somewhat unique ID to represent my devices and ignored all its analytics through code. public static String getPsuedoID() { String m_szDevIDShort = "35" + (Build.BOARD.length() % 10) + (Build.BRAND.length() % 10) + (Build.VERSION.SDK_INT % 10) + (Build.DEVICE.length()

Should one average Firebase Active User Metrics (DAU, WAU, MAU)?

会有一股神秘感。 提交于 2020-05-10 21:30:08
问题 I am trying to understand whether it is better to report month-over-month on the current Firebase "Active" User metrics report (view graph below), or rather self-calculate and report the average of each of these metrics's values over a specific period. At first-glance the dashboard shows you 1-day, 7-day, and 28-day active users for the month of December 2018, but it is in fact only the last day of the selected date range's values that is shown (on the right). This is great to know, but a bit

Should one average Firebase Active User Metrics (DAU, WAU, MAU)?

人走茶凉 提交于 2020-05-10 21:29:10
问题 I am trying to understand whether it is better to report month-over-month on the current Firebase "Active" User metrics report (view graph below), or rather self-calculate and report the average of each of these metrics's values over a specific period. At first-glance the dashboard shows you 1-day, 7-day, and 28-day active users for the month of December 2018, but it is in fact only the last day of the selected date range's values that is shown (on the right). This is great to know, but a bit