firebase-analytics

Android Firebase Analytics: predefined and custom parameters not working

你离开我真会死。 提交于 2019-12-13 03:16:30
问题 I have application which use Firebase SDK and used some predefined event and parameters but some parameters are automatically added but not all parameters For example Add to cart event Android : bundle.putString(FirebaseAnalytics.Param.ITEM_CATEGORY, params.get("item_category").toString()); bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, params.get("item_name").toString()); bundle.putString(FirebaseAnalytics.Param.ITEM_LOCATION_ID, params.get("item_location_id").toString()); bundle

Firebase Analytics app version name is sometimes versionName and sometimes versionCode

泄露秘密 提交于 2019-12-12 18:36:55
问题 In my Android App I am using Firebase Analytics for tracking. I see a strange behavior how my app version is tracked. It should use my versionName from my app build.gradle but almost 50% of my traffic seem to be tracked with the versionCode defaultConfig { ... versionCode 99999 versionName "1.0" ... } In Google Analytics the resulting page views are looking like this: screen shot analytics My implementation for Firebase Analytics is short: public class FirebaseTracker implements

How to share access to Firebase Analytics data without exposing the rest of Firebase?

≯℡__Kan透↙ 提交于 2019-12-12 18:22:16
问题 I know how to add collaborators to a Firebase project, and that I can assign specific roles to each collaborator, which are tied to certain permissions. However, no role seems to fit my requirements. I want to share access to Firebase Analytics with non-technical, marketing people. I have to avoid exposing the rest of Firebase to them, especially the Database and Storage buckets. Since I could not find anything about this in the Firebase Analytics documentation, I'm assuming that this is not

Clarification on custom event param limits in Firebase

穿精又带淫゛_ 提交于 2019-12-12 12:58:55
问题 I've gone over a ton of documentation on this topic and still aren't sure if the 25 custom params/property limit in Firebase is per app or per event name? Say I have 50 different events with 5 unique property names each, that would be a total of 250 unique property names. Is such a thing supported or do I start with a limit of 25 across all events? I have Firebase hooked up to Bigquery so I'm less concerned about the limitations in the Firebase reporting admin. Thanks. 回答1: Limitations for

Get Firebase Analytics Historic Data using BigQuery

可紊 提交于 2019-12-12 11:23:48
问题 I've linked firebase analytics app to BigQuery and getting raw data under app_events and app_events_intraday tables. Our major requirement behind using BigQuery is to get analytics data that we get under Firebase analytics dashboard e.g. active_users, new users, audience geo locations and so on. We can get these kinds of data using GA REST API for web applications but here we are using firebase app for mobile application and we came to know that BigQuery is the only option to get analytics

Firebase custom event parameters not visible in console

孤者浪人 提交于 2019-12-12 10:43:11
问题 I need help with custom parameters of Firebase event, don’t seem to be able to see or use any event parameter. Basically trying to use parameters to create Audience segmentation, but parameters seem to never arrive (on the other hand all custom events arrive correctly). As you can see from the attached screenshot the parameters list is always empty for custom events. The only parameters we can correctly see are related to system events (like first_open or in_app_purchase ). This is how we

How to log event parameters to Firebase console [duplicate]

倾然丶 夕夏残阳落幕 提交于 2019-12-12 09:57:18
问题 This question already has answers here : Firebase Analytics custom events params (6 answers) Closed 3 years ago . I have just started using Firebase for my app's analytics and I'm having some issues trying to view custom parameters associated with my events. The problem is that when creating an audience, I can see all the events but cannot drill down to the parameters (no parameters are shown associated to the events) As an example, I'd like to register the event "Add retail to favourite" and

Setting custom screen name for bottom sheet screen for Firebase Analytics

折月煮酒 提交于 2019-12-12 08:54:23
问题 I have an activity with a sliding bottom sheet. I want to track how long does the user views the bottom sheet or the main activity screen. I'm trying to use FirebaseAnalytics#setCurrentScreen(Activity activity, String screenName, String screenClassOverride) so that when the bottom sheet is shown. I specify the screenName with FirebaseAnalytics.setCurrentScreen(activity, "bottom_sheet", null); Then when the bottom sheet is closed I call FirebaseAnalytics.setCurrentScreen(activity, null, null);

Firebase Analytics events from iOS not showing up

ぐ巨炮叔叔 提交于 2019-12-12 07:13:03
问题 I am testing the new Google-powered Firebase, and have implemented remote notifications and crash reporting. I am, however, having massive problems with getting Analytics to work. I track events with FIRAnalytics.logEventWithName(...) and save user pproperties with FIRAnalytics.setUserPropertyString(...) . However, no matter what I do, no data shows up in the Firebase Analytics Console. Well, I do receive some events, but those are not sent by me (like first_open and session_start ). Also,

Firebase Analytics (Two projects) for single app

对着背影说爱祢 提交于 2019-12-12 03:58:48
问题 I want to use TWO Firebase Analytics for one single app, one single code. Project 1: Firebase Analytics Test Project Project 2: Firebase Analytics Prod Project How can I add two google-services.json file in one single project. Is there any other way to use the same. 回答1: Analytics works with only 1 Google App ID in your GoogleService-Info.plist. There is no way to send traffic to both projects. I'd recommend to have 2 separate projects for test and release versions. It's not recommended to