firebase-analytics

How to implement and test Firebase Analytics in a React-Native project?

空扰寡人 提交于 2020-02-03 06:13:21
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your

How to implement and test Firebase Analytics in a React-Native project?

可紊 提交于 2020-02-03 06:10:57
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your

Can bigquery or Firebase analytics data acessible from ios app side programmatically?

半世苍凉 提交于 2020-01-30 11:25:26
问题 I have Firebase analytics data and enabled BigQuery. But I have a requirement to validate the number of events and screens at app side under automated UI testing. Anyway to access and validate the Firebase analytics data at ios app side programmatically either in swift or objective c? 回答1: There is no API to retrieve Google Analytics data through Firebase. See Can I get firebase analytics data using query? There is also no API for BigQuery to allow secure access directly from your client-side

Can bigquery or Firebase analytics data acessible from ios app side programmatically?

戏子无情 提交于 2020-01-30 11:25:08
问题 I have Firebase analytics data and enabled BigQuery. But I have a requirement to validate the number of events and screens at app side under automated UI testing. Anyway to access and validate the Firebase analytics data at ios app side programmatically either in swift or objective c? 回答1: There is no API to retrieve Google Analytics data through Firebase. See Can I get firebase analytics data using query? There is also no API for BigQuery to allow secure access directly from your client-side

How to send custom parameter along with reserve event to firebase analytics

两盒软妹~` 提交于 2020-01-30 05:49:30
问题 I am able to send custom parameter along with custom event to firebase analytics in android using below method :- Bundle bundle = new Bundle(); bundle.putString("Action", "Action Perform Android"); bundle.putString("Category", "CustomEvent Android"); bundle.putString("Label", "click me"); firebaseAnalytics.logEvent("Button_clicked", bundle); Above method is working and we can see this event on firebase console. Here are some event that event name is reserve and we can not use this name again

How is user_first_touch_timestamp different from first_open_time?

瘦欲@ 提交于 2020-01-30 02:58:11
问题 Does "first" mean first in this run of the app (until the app terminates and restarts), or first across runs? I thought that these fields will have only one value, but they often have two. When I run this query: SELECT user_pseudo_id, COUNT(*) AS the_count FROM ( SELECT DISTINCT user_pseudo_id, user_first_touch_timestamp AS user_first_touch_timestamp FROM `noctacam.<my project>.events*` WHERE app_info.id = "<my bundle ID>" ORDER BY user_pseudo_id) GROUP BY user_pseudo_id ORDER BY the_count

Is it possible to add a parameter to the Firebase default 'session_start' event?

荒凉一梦 提交于 2020-01-25 09:34:06
问题 The title is the content. I want to add a parameter to the session_start event. The document says that there is no parameter for the session_start event, but no information about the custom parameter. Is it possible to add a parameter to the session_start event? Is it impossible to add a parameter to all the Firebase default event? 回答1: There's no way to add a custom parameter to the session_start event, or to any other automatically collected event, since parameters are added when you call

How do I add an analytics label to data messages with the java Firebase Admin SDK?

被刻印的时光 ゝ 提交于 2020-01-24 10:27:05
问题 As of July 1, Firebase requires the addition of labels to messages in order for analytics to show about the number of data message sends etc. 'Starting Monday, 1 July 2019, you will be able to filter data by an analytics label. Data messages sent without an analytics label might not be represented in this dashboard after that date.' The problem is that the link to the documentation provided by firebase here, does not help. It only refers to HTTP requests whilst I am using the Firebase Admin

How to see all device list in Firebase Analytics?

我的未来我决定 提交于 2020-01-22 04:34:10
问题 In our App we're using FCM, so Firebase analytics is also working. However, from the dashboard, we can only see top devices. Is there a way to see more details about devices? All the models All OS Region of all the devices? etc. For instance, we want to verify whether some users are being tracked in analytics (by their models), but can't find anyway to do that. 回答1: On Analytics -> Dashboard, clicking the three vertical dots then "Download CSV" will give you a CSV with all devices, OS

Where is the value of the “app_store” in the Firebase come from?

耗尽温柔 提交于 2020-01-15 10:27:11
问题 From the Google Firebase official doc, the user_dim.app_info.app_store is defined as The store which installed this app. And after checked my data, I've gotten some values of this key, like com.android.vending manual_install cm.aptoide.pt com.baidu.androidstore test com.google.android.feedback com.dragon.android.mobomarket co.android.vending com.miui.cloudbackup com.amazon.venezia Now I have a question: where the Firebase SDK get these values from? 回答1: On Android the package of the app that