firebase-analytics

DataStudio : BigQuery & Standard SQL

久未见 提交于 2019-12-20 06:28:44
问题 How to use standard SQL queries on Google Data Studio using a BigQuery Data Source ? Thanks 回答1: Unfortunately DataStudio only currently supports legacy SQL. The DataStudio team are working on BigQuery Standard SQL support To query using legacy sql in DataStudio Create a new report in DataStudio Select BigQuery connector (you will need to authorise access) Select Custom Query, which will give you the option of entering Legacy SQL directly 回答2: Google Data Studio supports #standardSQL now!

Calculating Active User Metrics for Firebase Analytics in BigQuery

醉酒当歌 提交于 2019-12-20 03:38:13
问题 I have recently stumbled unto this post to calculate MAUs in BigQuery (given Firebase Analytics Data). I worked from this query to answer DAU, WAU, and MAU for my project, but I have seen some minor discrepancies for the MAU and then WAU calculations. The aim is to calculate the active user metrics that I can compare with the Firebase Dashboard here. 1) Calculating MAU #standardSQL SELECT FORMAT_TIMESTAMP( '%Y-%m', TIMESTAMP_MICROS(user_dim.first_open_timestamp_micros)) AS year_and_month,

Firebase screen name is showing not set

点点圈 提交于 2019-12-19 21:44:35
问题 I have created a project in Google Firebase Analytics and I am able to log screen names in the console. But for one screen screen_view is not recorded and it is showing as not set in the screen view list. I have used a default function for logging screen view event (i.e. setCurrentScreen()). I am using Firebase:16.0.0 version. Can anyone please guide me for this. 回答1: put analytics.setCurrentScreen(this, "Screen Name", this.getClass().getSimpleName()); in onResume() . 回答2: Debug it in real

Firebase Analytics event parameters count limit

[亡魂溺海] 提交于 2019-12-19 19:44:14
问题 Is there any way to increase 25 paramers count limit in Firebase Analytics? 25 events params + 25 user properties is not very much for gaming apps. 25e + 50u will be sufficient. 回答1: There is currently no way to increase those limits. 来源: https://stackoverflow.com/questions/37528667/firebase-analytics-event-parameters-count-limit

Failed to resolve: com.google.firebase:firebase-analytics:9.0.0 [duplicate]

孤人 提交于 2019-12-19 04:52:08
问题 This question already has answers here : Failed to resolve: com.google.firebase:firebase-core:9.0.0 (11 answers) Closed 3 years ago . According to Google I/O 2016,I know the "Firebase",it is very nice for me,but I can not use it because this error.I have get a solution that update "Google play services" to 30,but no update tips. 回答1: You have to update your SDK Manager Also you have to use classpath 'com.google.gms:google-services:3.0.0' in your buildscript block and this version has to work

Google Analytics for iOS - Sending Custom Event Data using Dictionaries as createEventWithCategory allows only 4 parameters to be sent

▼魔方 西西 提交于 2019-12-18 19:33:13
问题 I decided to use Google Analytics over Flurry, as Flurry stopped updating tracking Events and nobody from Flurry Support team replied to my query. My requirement is as follows: "Whenever user clicks on tab I need to create an event which includes Tab Name , User ID , Time Stamp ." A screenshot from Flurry Event log may describe it more clearly. So, in Google Analytics Event Tracking function createEventWithCategory almost does the needful but it does not allow me to add my custom parameters

All firebase libraries must be either above or below 14.0.0

隐身守侯 提交于 2019-12-18 18:51:37
问题 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

Is it possible to use Firebase Messaging with Google Analytics in Android?

这一生的挚爱 提交于 2019-12-18 15:29:25
问题 I started using Firebase Cloud Messaging for an Android app and now I'm trying to add Google Analytics (not Firebase analytics) to the same app. The problem is that when creating google-services.json for Analytics, it ignores FCM. I'm using the same google account to create both json files. I read that when enabling the second service (in this case Analytics) the json should update adding both Messaging and Analytics but maybe this only works within Firebase services? I could use Firebase

Android Using Firebase Analytics along with Google Analytics

回眸只為那壹抹淺笑 提交于 2019-12-18 12:54:39
问题 I'd love to know how I can use Firebase Analytics (FA) and Google Analytics (GA) simultaneously as FA doesn't provide real-time data and my apps already integrated with GA since the beginning. I'd like to continue using GA since all my analytic data started there when I first launched my apps. Meanwhile, I'd like to have my apps have FA integrated to get more info. I followed Using Firebase Analytics and Google Analytics together and setup Google Tag Manager. It doesn't seem to be working for

Firebase analytics event logging in multi-process app

怎甘沉沦 提交于 2019-12-18 09:05:25
问题 I have integrated Firebase analytics into my app which has two process : a Background process and a UI process. What I experienced using Firebase was that I'm able to log events from the UI process but not from the Background process. I can see through Firebase logs on the Android Studio console that though the events are logged but are never scheduled to be uploaded on the Firebase console when being logged from the Background process. Is this a behaviour that Firebase analytics follows -