firebase-analytics

Firebase - is user deleted from Audience if his User property is changed

左心房为你撑大大i 提交于 2020-01-14 03:44:16
问题 We have two Audiences based on the User Property which value is either true or false . And we send different Push Notifications to these 2 Audiences. At one point user's property value can be changed so I expect him to be deleted from one Audience and appear in another like it is described official docs: Using Remote Config with Analytics audiences has some limitations when audiences are not based on user properties. Specifically, users become permanent members of an audience after they are

Firebase Analytics required for Crashlytics

帅比萌擦擦* 提交于 2020-01-13 19:44:19
问题 I've migrated my apps from Fabric to Firebase. All the apps are now visible in Firebase. My apps don't have Firebase integrated. As per the integration doc, app will still report crashes without Firebase SDK(only need Fabric SDK). What i'm confused about is, do i need to add Firebase Analytics to get proper crash logs ? Because i forced a crash using below code(provided by Firebase) but it didn't record in Firebase but recorded in Fabric. Button crashButton = new Button(this); crashButton

V/FA: Processing queued up service tasks: 1 followed by V/FA: Inactivity, disconnecting from AppMeasurementService

我只是一个虾纸丫 提交于 2020-01-09 05:07:09
问题 As it is visible in the console output below, the application usually needs 7-10 seconds to process the service and often fails to do it. This happens on every startup. Why is it taking so long? Is it because the service is trying to connect multiple times before giving up? Also, what is actually the logic behind this output? Note: I don't have any FirebaseAnalytics code in my application 09-26 23:34:48.998 /package V/FA: Processing queued up service tasks: 1 09-26 23:34:54.009 /package V/FA:

Testing Firebase Funnels

我只是一个虾纸丫 提交于 2020-01-07 03:07:28
问题 I wanted to know a simple question regarding setting up my first funnel in Firebase. If we wanted to know which unique users (on a specific day) first opened the app and removed it, would the below simple funnel be sufficient ? Note: On the filter date, I selected "Yesterday". Question: Would this selection enable me then to view only those users that did "First Open" (my base) AND "App removal" on the same day (on D0) ? or is this an open funnel of a wider base: i.e. users that somewhere in

What's difference between Ionic native Firebase vs Firebase-Analytics?

我们两清 提交于 2020-01-06 08:43:18
问题 What's difference between: https://ionicframework.com/docs/native/firebase/ and https://ionicframework.com/docs/native/firebase-analytics/ I already use "firebase" for push notifications, but I need register pageviews manually, I need use these two plugins? 回答1: Ionic 'Native' Firebase and Ionic 'Native' Firebase Analytics are the Ionic wrappers that are "providing a common interface for all plugins and ensuring that native events trigger change detection in Angular". These wrappers can't

Google Tag Manager with Facebook Analytics for Apps

浪尽此生 提交于 2020-01-06 06:20:44
问题 I have integrated my firebase analytics in apps and want to use facebook analytics to target ad campaigns. But, I don't want to code everything and integrate facebook analytics. I have heard that Google Tag Manager integreates with both facebook and firebase analytics. Can I share events from Firebase Analytics to Facebook Analytics via Google Tag Manager? 回答1: Google Tag Manager does not integrate with Facebook. You can find a list of integrations here: https://support.google.com/tagmanager

How do I take out data from an event for multiple parameters with value of one parameter being the same in the event

Deadly 提交于 2020-01-06 05:27:04
问题 Take for example, event_dim.name = "Start_Level" event_dim.params.key = "Chapter_Name" event_dim.params.value.string_value = "chapter_1" (or "chapter_2" or "chapter_3" and so on) event_dim.params.key = "Level" event_dim.params.value.int_value = 1 or 2 or 3 or 4 and so on event_dim.params.key = "Opening_Balance" event_dim.params.value = 1000 or 1200 or 300 or so on How do I take out the data if I want to: - Look at unique users who've played "Level" only for event_dim.params.string_value =

Does turning off FireBase swizzling affect analytics besides push receipts?

我只是一个虾纸丫 提交于 2020-01-06 03:37:25
问题 The Firebase cloud messaging documentation says that they swizzle some methods in order to get a push notification token and log receiving a push notification. In the FIRAnalytics documentation, some event names are reserved (see under logEventName:parameters: ), including in_app_purchase . This suggests that Firebase is automatically logging in-app purchases to their analytics, which seems difficult to do automatically without swizzling. Does Firebase swizzle in order to use these reserved

Creating views periodically in BigQuery

风流意气都作罢 提交于 2020-01-05 06:31:05
问题 I'm currently using Firebase Analytics to export user-related data to BigQuery. Is there a way to create a view automatically in BigQuery (every 24 hours for example) as exports from Firebase create a new table everyday, or a single view gathering the data from the tables created daily. Is it possible to do such things with the WebUI ? 回答1: You can create a view over a wildcard table so that you don't need to update it each day. Here is an example view definition, using the query from one of

Firebase Analytics first_open from Google Analytics

岁酱吖の 提交于 2020-01-05 05:01:08
问题 My Android app right now uses Google Analytics. However, I want to add Firebase Analytics as well. Let's say the new version of the app now has FA. Will the 'first_open' event be triggered for old users and mark them as they've first opened the app only now? Is there any possibility to link FA with GA and get the correct 'first_open' for the old users? Should I introduce my own 'user property' to mark users that had a previous version of the app when they first run the new version? Maybe a