firebase-analytics

How does Firebase Analytics define a session?

限于喜欢 提交于 2019-12-03 11:38:56
Firebase Analytics has a number of stats around "Sessions" (like "Sessions per user" and "Average session length"), but how exactly does Firebase Analytics define a session? And I'll answer my question by saying that Firebase Analytics defines a session as a user engaging with your app for a minimum amount of time (10 seconds by default) followed by your user not engaging with your app for a certain amount of time (30 minutes by default). But you can change those times if you'd like something different. So if a user starts using your app, switches to messaging to send a message, goes back to

Can i disable Firebase plugin for specific flavor?

那年仲夏 提交于 2019-12-03 11:36:37
I'm currently trying out the Firebase analytics suit, but, i have faced one small issue, my app is distributed on both google play and amazon store (which doesn't support google play services), so for the amazon flavor i want to remove the dependency to Firebase (which i already know how to do), but, i also need to remove the Firebase plugin, so that it doesn't throw an exception while building. This is what i have as far now: productFlavors { google { applicationId 'google app id' } amazon { applicationId 'amazon app id' } } dependencies { googleCompile 'com.google.firebase:firebase-analytics

Event Data Collected by Firebase Analytics DebugView Is Incomplete

核能气质少年 提交于 2019-12-03 10:29:30
I'm sending events to Firebase Analytics and find out that part of the event parameters is missing in DebugView. Below are two identical events sending to Firebase and I've checked that all the parameters are there in Xcode debug console. The missing parameters seem to be random. Sometimes there's no custom param at all, only auto-collected data. Is there anyone also encounters this problem or does anyone know what causes this? I'm using FirebaseAnalytics (= 5.8.1) 来源: https://stackoverflow.com/questions/56671017/event-data-collected-by-firebase-analytics-debugview-is-incomplete

How to track android fragments using firebase analytics

久未见 提交于 2019-12-03 06:34:46
问题 In my android application, I have an Activity that has 3 or 4 fragments that can be attached in sequence based on some user or server events. I would like to track all these fragments as screens in firebase. So ideally, if possible, is there an API i can invoke in the onCreate of the fragments, and tell firebase that user is currently in fragment1, fragment2 or fragment3? 回答1: There is a special method to set a current screen - setCurrentScreen I used it as follows mFirebaseAnalytics

Adding Firebase Analytics and Google Analytics in Android App

雨燕双飞 提交于 2019-12-03 06:34:30
I have implemented Firebase Analytics. It is working fine. I wish to use the Google Analytics as well. Based on the discussion here I have included the below object in the google-services.json "analytics_service": { "status": 2, "analytics_property": { "tracking_id": "<your tracking id>" } }, For Google Analytics, I have the Tracker Class public class PuzzleGamesTracker extends Application { // The following line should be changed to include the correct property id. private static final String PROPERTY_ID = "<your tracking id>"; private Tracker mTracker; @Override protected void

Firebase exported to BigQuery: retention cohorts query

╄→尐↘猪︶ㄣ 提交于 2019-12-03 06:14:11
问题 Firebase offer split testing functionality through Firebase remote configuration, but there are lack of ability to filter retention in cohorts sections with user properties (with any property in actual fact). In quest of solution for this problem i'm looking for BigQuery, in reason of Firebase Analytics provide usable way to export data to this service. But i stuck with many questions and google has no answer or example which may point me to the right direction. General questions: As first

Android - Google tag Manager with Google Analytics and Firebase Analytics

青春壹個敷衍的年華 提交于 2019-12-03 06:10:22
I am working with a shopping app and would like to track so events occuring on my mobile application. My objective is to track the events using Firebase Analytics and Google Tag manager and push the same events to Google analytics. My event > Firebase > Google tag manager > Google analytics I followed the below guide to integrate Google tag manager and Firebase analytics to my application. https://developers.google.com/tag-manager/android/v5/ I was able to log my events on Firebase console and view in debug console. I have added dependency for Tag manager in my gradle so that the events are

Firebase Analytics - Open and Closed Funnel Tracking

妖精的绣舞 提交于 2019-12-03 06:06:19
I have been reading a bit about Firebase Analytics now, and because it is mostly an event-based data model, I assume one can not do screen tracking directly? I was wandering whether one should then just pass the screen type/name as part of the event's parameter, or possibly as a user property (which I believe is a simpler way of calling custom dimensions) ? Thus all events that are fired on the 'Home' screen would have: content_type_Home=1 ? Does someone have an answer for me, as well as a code example please ? Much appreciated :) Until Screen Tracking and User Flows become available, the

Firebase Global Parameter Reporting Quota Just 10 Text Parameters?

好久不见. 提交于 2019-12-03 02:36:25
We've designed every single event parameter on our event logs to monitor on Firebase Analytics Console. But we were shocked when we realized that we had just 10 text parameter quota per app :(( It is so sad that Firebase has just too few quotas for Analytics monitoring on console :( What should we do now? Just log those parameters anyway to use with BigQuery one day? :( I recommend that you link to BigQuery and use the Data Studio templates to produce reports on your full set of custom event parameters. BigQuery offers free query and storage tiers, so it's a very affordable solution if you

Firebase Analytics Debug View does not show anything

最后都变了- 提交于 2019-12-02 20:20:48
I linked my Android app with Firebase using Android Studio Which created and set my google-service.json into my project. When i debug my event logging in logcat i got : V/FA-SVC: Successful upload. Got network response. code, size: 204, 0 But nothing is showing into firebase console debug view Diptendu Das Test device setup To enable sending of DebugView data on a connected Android test device for a configured Firebase Analytics app, execute the following command: adb shell setprop debug.firebase.analytics.app [your_app_package_name] This behavior persists until you explicitly disable it by