firebase-analytics

Analytics for Firebase - User Properties with Google Tag Manager

大城市里の小女人 提交于 2020-01-05 04:30:28
问题 Does anyone know if there is a way to set User Properties of Analytics for Firebase with Google Tag Manager? I'm not finding deep documentation about converging this two tools. 回答1: Lets say you have a user property called exciting_sport and you have written the Firebase code for this user property as follows: Analytics.setUserPropery("exciting_sport", xcitingsport); Now in the GTM console you need to create a new variable that matches the user property key. Take a look at the attached

Manual screen tracking not working in Firebase (iOS)

烂漫一生 提交于 2020-01-04 15:28:46
问题 I'm trying to disable the manual screen tracking in Firebase, replacing it with my own implementation of screen tracking. With the automatic screen tracking, every event I send to firebase has two extra params: firebase_screen_class and firebase_screen_id with the value of the last ViewController presented in the app So I modified the app's Info.plist file with : FirebaseScreenReportingEnabled = NO And I started calling the function when the screen of the app gets changed: Analytics

How to create a new Bundle object?

风格不统一 提交于 2020-01-03 20:31:14
问题 I'm trying to use Firebase Analytics for an Android application, and in order to log events I've followed https://firebase.google.com/docs/analytics/android/events. That is, in order to send my event, I have to create a new Bundle object (which I create by using the default constructor) and I call the logEvent function of Firebase Analytics. While testing my development with a simple unit test, I realized that there's no content set in the bundle, which makes me wonder if any information is

Firebase Analytics calculation of User counts (Daily/Weekly/Monthly Active Users)

浪尽此生 提交于 2020-01-03 16:55:09
问题 Firebase Analytics reports data w.r.t. Daily/Weekly/Monthly Active Users. Few questions: (1) Dashboard: Projecting the Daily Active Users to a month, does not match the value shown in Firebase Dashboard. For e.g. if Daily Active Users is 30K, then Firebase shows the corresponding Monthly Active Users as 150K. Does it imply that there were 30K users in last 7 days, and 120K in the preceding 21days? Not sure why isn't it 30 days x 30K = 900K. (2) On selecting Firebase > Events > Select_Content

How does the Firebase help on firing tags in google tag management

倖福魔咒の 提交于 2020-01-03 02:55:24
问题 I am trying to understand what is the role of firebase to the google tag management. According to the GTM document Log events and variables, "your Firebase Analytics implementation acts as your data layer". And in the Fire tags section, the document mentions "Trigger conditions are evaluated whenever you log a Firebase event". My question is how this "DataLayer" Firebase Analytics triggers the other tags. Are those tags triggered by the Firebase server outside users' apps? Or the Firebase

Firebase Analytics with iOS framework development project

白昼怎懂夜的黑 提交于 2020-01-02 04:55:30
问题 I am adding Firebase analytics using coocapods, my Podfile is platform :ios, '8.0' use_frameworks! workspace 'ProjectWorkspace.xcworkspace' abstract_target 'Shows' do pod 'SwiftProtobuf', git: 'https://github.com/apple/swift-protobuf.git', :tag => '0.9.24' pod 'Firebase/Core' pod 'Firebase/Messaging' target 'HostApp' do project 'HostAppFolder/HostApp.xcodeproj' end target 'HostAppReleaseTarget' do project 'HostAppFolderApp/HostApp.xcodeproj' end target 'FrameWorkProject' do project

Firebase vs BigQuery Active Users Discrepancies

南楼画角 提交于 2019-12-31 05:11:26
问题 I've integrated my Firebase project with BigQuery . Now I'm facing a data discrepancy issue while trying to get 1 day active users , for the selected date i.e. 20190210 , with following query from BigQuery ; SELECT COUNT(DISTINCT user_pseudo_id) AS 1_day_active_users_count FROM `MY_TABLE.events_*` WHERE event_name = 'user_engagement' AND _TABLE_SUFFIX = '20190210' But the figures returned from BigQuery doesn't match with the ones reported on Firebase Analytics Dashboard for the same date. Any

What the difference in firebase-core and firebase-analytics libraray?

北城余情 提交于 2019-12-30 17:19:15
问题 Google recently released new verison of Firebase. So I was trying to migrateto Firebase analytics. So what is the difference between these libraries com.google.firebase:firebase-analytics:9.0.0 and com.google.firebase:firebase-core:9.0.0 I found that core is for analytics too. So whats the difference? Which should I use. 回答1: Currently there is no difference. The firebase-core:9.0.0 has no classes and resources in the aar file and contains the firebase-analytics as you can check in the pom

Can I get firebase analytics data using query?

吃可爱长大的小学妹 提交于 2019-12-29 08:41:29
问题 How can I get firebase analytics data using HTTP request or api? I want to show firebase analytics data on my website 回答1: You can't directly do this from http or api. But you need to export to BigQuery and there you can query the data. I am not much aware of hoe BigQuery works and how you can fetch and show data on websites but you can not do this in your free plan. You can export war analytics data to BigQuery in BLAZE plan. And then you can query from the BigQuery database. 回答2: Google

Can I get firebase analytics data using query?

老子叫甜甜 提交于 2019-12-29 08:41:25
问题 How can I get firebase analytics data using HTTP request or api? I want to show firebase analytics data on my website 回答1: You can't directly do this from http or api. But you need to export to BigQuery and there you can query the data. I am not much aware of hoe BigQuery works and how you can fetch and show data on websites but you can not do this in your free plan. You can export war analytics data to BigQuery in BLAZE plan. And then you can query from the BigQuery database. 回答2: Google