firebase-analytics

Is there a way to create an audience of developer builds?

≡放荡痞女 提交于 2019-12-11 02:13:33
问题 I've tried to make an audience in Firebase Analytics, with "App Version" set to "contains 'debug'". The debug version of my app appends "-debug" on the end of the Version Name string. When I run the app, though, while Firebase records data for my sessions, it does not record any for the "debug audience." What I ultimately hope to get to is a world where I can use Remote Config, creating config items that I can use in testing, but I wouldn't have to worry about accidentally leaving config

Firebase Analytics. Can not add custom parameter to event

不打扰是莪最后的温柔 提交于 2019-12-11 01:57:22
问题 I am trying to add a parameter to my event, but receiving an error "Internal error Please try again later". I have no registered any parameter yet (0 text and 0 number). After pressing save button I receive following error messages Internal error. Please try again later. (in the center) One or more parameters have not been registered. Please try again (in the top right side) Here is the steps... Add the parameter Select parameter type "Text" After "Save" button click, I'm receiving fallowing

Preview & Update version of GTM Container | iOS

不问归期 提交于 2019-12-11 01:32:45
问题 i've integrated google tag manager in my iOS app. I'm stuck at some points: How to preview the version before making it live.I followed this link & added the urls in plist file. How to do the following step mentioned on this link Stop your application and open the preview URL on an emulator or physical device to preview the draft container in your application. It's said that we don't have to submit a new binary & GTM version is updated in app automatically. How? I've not written any code to

Integrate Firebase Analytics with Xamarin Android

倖福魔咒の 提交于 2019-12-11 01:23:27
问题 There is no official documentation for analytics integration with xamarin. Only Xamarin Google Analytics Sample is available officially. But we found an official Firebase nuget package Xamarin.Firebase.Analytics has been available for analytics which is provided by microsoft. But there is no proper document to configure firebase with xamarin. We have created app id and .json file got generated from firebase console for our application. But there is no reference to configure these in xamarimn

Configure Multiple Firebase Projects Runtime in iOS application and Firebase/Google Analytics

不想你离开。 提交于 2019-12-11 01:08:19
问题 We are starting to migrate from Google Analytics to Firebase Analytics as it is going to be deprecated in a year. We have a need of initializing the firebase project runtime in our iOS application and we are following the steps mentioned here: https://firebase.google.com/docs/projects/multiprojects?authuser=0 Why do we need to initialize the firebase manually and at runtime? The details are in this issue: Switching between different firebase projects (runtime) in one single APK file I posted

If you don't add parameters to firebase analytics console, will the parameters get stored?

。_饼干妹妹 提交于 2019-12-10 23:20:05
问题 Since there is a limit of how many parameter you can add for each app, can I just pass those parameters but not add the parameter to the console (so that in the future I can use BigQuery to export all the raw data back out if needed)? 回答1: The parameters are stored no matter you track them or not. If you don't track the parameters, you can still access them via BigQuery. 来源: https://stackoverflow.com/questions/44797366/if-you-dont-add-parameters-to-firebase-analytics-console-will-the

Custom events in Firebase analytics console

佐手、 提交于 2019-12-10 17:38:26
问题 I have followed the Firebase Analytics start guide to import my google-analytics project into Firebase. Everything went fine except that I cannot see any new data (custom events and new users) while I'm doing my tests. There is no real-time functionality so at least I'm expected to see my custom events published in the dashboard as soon as they are emitted by the app. Here an example of what I'm trying to achieve: mFirebaseAnalytics.logEvent("test_event", null); From the logcat I can see:

How to group events parameters by event on firebase?

和自甴很熟 提交于 2019-12-10 11:52:16
问题 I'm working in a react native application that uses analytics using react-native-firebase, I had something like this: Analytics.logEvent('event_click', { target: 'accept', screen:'MainScreen' }); What I want on firebase, is to group the 'target' by 'screen' param for example or simply to see the params grouped and not separately. Thank you! 回答1: There are automatic registered events on Firebase that track the screen views, look at this source. I recommend to organize your events according to

Firebase modules failed to initialize: remote_config (missing dependency)

穿精又带淫゛_ 提交于 2019-12-10 11:43:18
问题 Lately I've been getting quite some of these crashes: java.lang.Exception: InitializationException : Firebase modules failed to initialize: remote_config (missing dependency) at Firebase.FirebaseApp.CreateAndTrack(Firebase.FirebaseApp) at Firebase.FirebaseApp.Create(Firebase.FirebaseApp) at Firebase.FirebaseApp.get_DefaultInstance(Firebase.FirebaseApp) at Firebase.Analytics.FirebaseAnalytics..cctor(Firebase.Analytics.FirebaseAnalytics.) at Titan.Managers.GameManager.Awake(Titan.Managers

Configure Firebase Analaytics + Google Tag Manager (GTM) per build variant

故事扮演 提交于 2019-12-10 02:40:04
问题 Before Firebase Analytics became available we use a multi flavour, multi build type Android Gradle project setup, and supply a different GTM container ID for each build variant, as follows: TagManager.getInstance(context) .loadContainerPreferNonDefault(BuildConfig.GTM_CONTAINER_ID, -1); TagManager.getInstance(context).getDataLayer().pushEvent(eventName, eventData); where Gradle would inject different GTM_CONTAINER_ID per build variant. How do we achieve the same with Firebase Analytics + GTM?