firebase-analytics

How does Firebase Analytics define a “user” (for purposes of Audience)?

点点圈 提交于 2019-11-27 04:44:01
问题 I've been told that, "Once a user is in an audience, they will forever be in that audience". I'm curious how long is "forever," in the context of a user? For instance, if a user changes phones, or uninstalls the app and then re-installs later, does the user persist across those transitions, or is each of those a separate user? And if I have multiple apps in one Firebase project, does the user appear in the same audience in all apps within that project? What does Firebase Analytics consider to

Does Firebase Analytics Work Offline?

試著忘記壹切 提交于 2019-11-27 03:16:53
问题 I know Firebase in general works offline, and syncs whenever an opportunity. Does the same thing apply to Firebase-Analytics for mobile (Android, iOS) apps? If yes (or partially yes) - how long can the user be offline? 回答1: Yes, events are stored locally and uploaded when the radio is turned on. Events which arrive more than 72 hours late will be ignored by our server. 回答2: Firebase Analytics will store logged evens locally on the device (online or offline). When its time to upload the data

No static method zzUr() in Firebase when I try to use Analytics with Notifications

半世苍凉 提交于 2019-11-27 02:37:57
问题 I'm starting to use the Firebase Cloud Messaging. I have only the example code of the guide to use the Notifications and Analytics. If I don't install Analytics notifications works fine, but when I add in gradle the Analytics I have get this error when I try to send a notification: java.lang.NoSuchMethodError: No static method zzUr()Landroid/content/Intent; in class Lcom/google/firebase/iid/FirebaseInstanceIdInternalReceiver; or its super classes (declaration of 'com.google.firebase.iid

Screen tracking support - Firebase 9.8

陌路散爱 提交于 2019-11-27 01:37:13
问题 According Firebase Android SDK Release Notes with 9.8 update we have screen tracking support with android screens and activities... The documentation says that this event works like that: mFirebaseAnalytics.setCurrentScreen(activity,class_name,class_override_name); In my case, I don't need overrides class name and I send null value... But i'm waiting 48h and my firebase analytics console doesn't show info about this event, any ideas? Thanks in advance! 回答1: Another very important thing that I

Firebase Analytics Rest API [duplicate]

为君一笑 提交于 2019-11-26 23:42:42
问题 This question already has an answer here : Firebase analytics from remote REST API? (1 answer) Closed 14 days ago . I am trying to get firebase analytics data using Rest API but as per best of my knowledge, I need Profile ID to get analytics data. To get profile ID there needs to be a property and view under GA Dashboard which seems like not to be supported for firebase analytics app. Please let me know how can I get analytics data for firebase app using REST API? Thanks! 回答1: There is no

How to disable/remove FirebaseAnalytics

巧了我就是萌 提交于 2019-11-26 22:51:42
I update 'Google/Analytics' from CocoaPod and get FirebaseAnalytics. After that, each time I run project, the FirebaseAnalytics turns out many error loggings. Currently I don't use this library and want to remove it. Unfortunately I can't find any way to disable / remove it out of Pod. Here is the Podfile configuration target 'myApp' do inhibit_all_warnings! use_frameworks! pod 'Google/Analytics' end Console log: <FIRAnalytics/DEBUG> Debug mode is on <FIRAnalytics/INFO> Firebase Analytics v.3200000 started <FIRAnalytics/INFO> To enable debug logging set the following application argument:

Firebase Analytics in Xamarin Forms

早过忘川 提交于 2019-11-26 20:57:09
问题 Can we get custom events such as say Button 1 was pressed using Firebase Analytics in a Xamarin Forms Project ? 回答1: Answer Updated for the new version of Xamarin Firebase components and to fix various issues Sure, you need to DI (dependency injection) to call the platform code. Configure your Firebase App: https://firebase.google.com/docs/projects/learn-more Reference the proper nuget packages for Firebase Analytics: Android Project Xamarin.FireBase.Analytics Xamarin.FireBase.Analytics.Impl

Is there any api for dashboard analytics data?

試著忘記壹切 提交于 2019-11-26 17:55:45
Is there any way i can query in my app for data from the analytics tab of dashboard? For example: ref.on("value", function(dashboard) { console.log(dashboard.concurrentUsers) }); From the "dashboard.concurrentUsers" in your question, it looks like you're trying to get the data from the Analytics tab of your dashboard. There is no public API to get the analytics data, although you can export the data to a CSV file manually from the Firebase console. What you can do is enable the BigQuery integration . Doing this means that all Google Analytics for Firebase events from that moment on will be

How much time does it take for firebase analytics first report?

爷,独闯天下 提交于 2019-11-26 17:33:29
问题 We wanted to try out the new analytics capabilities provided by firebase, and followed all the steps in the getting started guide. We 've run the app, logged a lot of events and its been a few hours; yet there is no data on the dashboard - We just see a banner saying "Your analytics data will appear here soon" How much time does it take to get our first reports, events, etc.? 回答1: It takes a few hours. I would say it takes like 4 hours or something like that, based on current experiments.

How to calculate Session and Session duration in Firebase Analytics raw data?

喜你入骨 提交于 2019-11-26 16:55:43
问题 How to calculate Session Duration in Firebase analytics raw data which is linked to BigQuery? I have used the following blog to calculate the users by using the flatten command for the events which are nested within each record, but I would like to know how to proceed with in calculating the Session and Session duration by country and time. (I have many apps configured, but if you could help me with the SQL query for calculating the session duration and session, It would be of immense help)