firebase-analytics

Can't I view Real Time users on firebase?

喜你入骨 提交于 2019-11-29 11:00:32
问题 I used to use Admob analytics to view my users activity. There I was able to view real time app running users. Now when I upgraded to the Firebase, I don't find any real time user stats. Does firebase has real time users stat feature? Thanks in advance. 回答1: There currently is no equivalent to Google Analytics' real time tracking of user information available in Firebase Analytics. Update (February 2017) : Firebase added DebugView to its Analytics product. This allows you to see a near

How to add Firebase custom events for analytics?

拜拜、爱过 提交于 2019-11-29 09:12:04
I've seen some questions and answers about custom events for firebase analytics, but i just wanted to ask you a straight question so you can give me a straight answer :) So, this is my method for logging: @Override public void logFeatureSelectedEvent(String categoryName, String actionName, String labelName) { Bundle bundle = new Bundle(); bundle.putString(EventTrackingKeys.EventTypes.CATEGORY, categoryName); bundle.putString(EventTrackingKeys.EventTypes.ACTION, actionName); bundle.putString(EventTrackingKeys.EventTypes.LABEL, labelName); mFirebaseAnalytics.logEvent(EventTrackingKeys

How to debug Firebase on iOS AdHoc build

*爱你&永不变心* 提交于 2019-11-29 07:04:11
问题 The only way to debug Firebase is to pass -FIRAnalyticsDebugEnabled on arguments passed on launch. It's working in debug mode with my iOS device connected but I would like to deploy an AdHoc build so QA can test it without Xcode. But it seems arguments aren't passed at launch when Xcode archives a build. Any solution? Thanks. 回答1: I found hack solution for this, try it in your application:didFinishLaunchingWithOptions: or override AppDelegate’s init: Objective-C: NSMutableArray *newArguments

Firebase Analytics event logging error

≯℡__Kan透↙ 提交于 2019-11-29 06:03:19
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 events I receive Logging event (FE): select_content, Bundle[{_o=app, _ev=item_id, _err=4, content_type

Disabling firebase automatic screen reporting

别等时光非礼了梦想. 提交于 2019-11-29 05:33:10
Is there a way to disable Firebase analytics automatic screen reporting? I have a few UIViewCOntroller's that i don't want to be reported. So i want to manage the screen reporting my self. Setting FirebaseAutomaticScreenReportingEnabled to NO didn't work Thanks For 2018, you Info.plist will have entries like this: <key>FIREBASE_ANALYTICS_COLLECTION_ENABLED</key> <string>NO</string> <key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key> <string>YES</string> <key>FirebaseScreenReportingEnabled</key> <false/> Critical: Surprisingly this is in >>> YOUR <<< Info.plist. Not the strange plist added by

Discrepancies on “active users metric” between Firebase Analytics dashboard and BigQuery export

末鹿安然 提交于 2019-11-29 04:37:19
According to Firebase Analytics docs ( https://support.google.com/firebase/answer/6317517#active-users ), the active number of users is the number of unique users who initiated sessions on a given day. Also according to the docs, every time a session is started an event with session_start name is sent. I am trying to get that metric using BigQuery's export, but my query is giving me different results (15636 on BigQuery, 14908 on FB analytics) I have also tried converting to different timezones to see if that might be the issue, but no matter which timezone I try I never get the same (or

Firebase analytics AppMeasurement not enabled

╄→尐↘猪︶ㄣ 提交于 2019-11-29 01:41:34
I have followed all the instructions for integrating Firebase analytics correctly in my project. But when I enable debug logging to make sure the events are being sent (using instructions from here ) I see E/FA ( 3556): AppMeasurementReceiver not registered/enabled E/FA ( 3556): AppMeasurementService not registered/enabled E/FA ( 3556): Uploading is not possible. App measurement disabled and obviously the events are not being sent. Again I have followed all the instructions . It turns out that Firebase Library has an Android Manifest file in which it defines these nodes: <service android:name=

How event “first_open” in firebase analytic count?

自闭症网瘾萝莉.ら 提交于 2019-11-28 21:26:51
In my firebase analytic event "first_open" shows 489 download till 7th july but in play store stats it shows 347 download till 7th july, i don't know why these no. is differ. Definition of first_open is:- When a user opens the app for the first time. This event is not triggered when a user downloads the app onto a device, but instead when he or she first uses it. To see raw download numbers, look in Google Play Developer Console or in iTunesConnect. But when user open my app for first time is 489 then at play store it should also be 489 or more, i don't know why this happen? I have doubt if

How to use scheduler for Firebase Cloud Functions with Realtime Database/Analytics triggers?

一曲冷凌霜 提交于 2019-11-28 14:38:47
I'm working on a Firebase Cloud Function, to send triggered push notifications. Right now my function sends a push as soon as an user triggers the "IAP" event in my app. 'use strict'; const functions = require('firebase-functions'); const admin = require('firebase-admin'); admin.initializeApp(functions.config().firebase); exports.sendIAPAnalytics = functions.analytics.event('IAP').onLog((event) => { const user = event.user; const uid = user.userId; // The user ID set via the setUserId API. sendPushToUser(); return true; }); function sendPushToUser(uid) { // Fetching all the user's device

How to move from Google-Analytics to Firebase-Analytics?

不问归期 提交于 2019-11-28 14:31:52
问题 Background In the recent months, Google has published a new Analytics alternative, called "Firebase Analytics" . The problem As the app already does have Google-Analytics, I find some obstacles that I can't see how to best handle. The questions Previously, "newTracker" function needed a property-id. Now I don't see it. Does it mean it doesn't need one? Previously, "enableAdvertisingIdCollection " was available to collect ads info too. I can't find it in new APIs. Is it automatically collected