firebase-analytics

Google play policy update - privacy vs Google Analytics, Firebase Analytics

纵饮孤独 提交于 2019-12-23 03:06:16
问题 Recently Google updated theirs policy for developers. https://play.google.com/about/privacy-security/personal-sensitive/ If your app handles personal or sensitive user data (including personally identifiable information, financial and payment information, authentication information, phonebook or contact data, microphone and camera sensor data, and sensitive device data) then your app must: .. If your app collects and transmits personal or sensitive user data unrelated to functionality

Query key value in different columns from Google BigQuery

寵の児 提交于 2019-12-22 18:21:33
问题 I gather analytics with Firebase Analytics which I linked to Google BigQuery. I have the following data in BigQuery (unnecessary columns/rows are left off, the dataset looks similar to https://bigquery.cloud.google.com/table/firebase-analytics-sample-data:ios_dataset.app_events_20160607?tab=preview): | event_dim.name | event_dim.params.key | event_dim.params.value.string_value | |----------------|----------------------|-------------------------------------| | read_post | post_id | p_100 | | |

Extracting Firebase / BigQuery DAUs, WAUs and MAUs

旧城冷巷雨未停 提交于 2019-12-22 09:59:46
问题 I don’t want to over complicate this question, so I will try to ask it as clear as possible to avoid confusion. The outcome I require is two-fold. I want to determine the DAUs, WAUs, and MAUs for a Mobile App within: a) Google Analytics, as well as in b) Firebase Analytics. I guess one can focus more attention on b) because their is a shift towards tighter integration between Architecture and Analytics for future app development. a) Calculating DAUs, WAUs, and MAUs in Google Analytics:

Android Version Conflict for Google Services

烈酒焚心 提交于 2019-12-22 08:33:49
问题 I've searched for a lot of solutions to this, but none fit my exact case. I am getting this error on Gradle Sync: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.4.2. this is in my build.gradle (app)

Is Firebase now mandatory for use of Google Analytics Mobile Properties?

情到浓时终转凉″ 提交于 2019-12-22 04:06:16
问题 Is Firebase now required for setting up Google Analytics for Mobile? In the past, when I've setup Google Analytics for Mobile, I've selected "Mobile" from the Create New Property view and gotten the standard Analytics key (e.g., "UA-BLAHBLAH-BL"). However, when I went to setup a new property today, that is not what is happening. Instead, I am seeing this: It appears that there is now no way to use the traditional Google Analytics SDK for new properties using the analytics key of olde. Am I

Firebase Analytics Filter By User ID

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-21 14:47:11
问题 The Firebase Android SDK for analytics provides a method named setUserId(String id) , now i enabled firebase logging and every time i called the method setUserId(1234) i see this in the logs Setting user property (FE): _id, 1234 . My question is how come the Firebase dashboard does not let us filter by this property, there is no property not for userId and not _id, i even tried to add _id as a property in the dashboard but Firebase does not allow property names to start with an underscore. Do

Can i disable Firebase plugin for specific flavor?

半腔热情 提交于 2019-12-21 03:43:11
问题 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 {

Firebase Global Parameter Reporting Quota Just 10 Text Parameters?

心不动则不痛 提交于 2019-12-20 11:30:20
问题 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? :( 回答1: I recommend that you link to BigQuery and use the Data Studio templates to produce reports on your full set of custom

Firebase Analytics Debug View does not show anything

馋奶兔 提交于 2019-12-20 09:48: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 回答1: 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

Raw BigQuery Log-data for 1st Day Installers

余生长醉 提交于 2019-12-20 07:54:26
问题 I am fairly new to StandardSQL, and wanted to export Raw BigQuery log-data for users that installed on a given date (1st June 2017) with first 3-week's session data on and after install-date (D0-D20). #StandardSQL SELECT user_dim.first_open_timestamp_micros, user_dim.app_info.app_instance_id, event_dim.date, event_dim.name, event_dim.timestamp_micros, event_dim.previous_timestamp_micros FROM `your_table_id.app_events_*` WHERE _TABLE_SUFFIX BETWEEN '20170601' AND '20170621' AND (SELECT user