firebase-analytics

Firebase Analytics demographics

早过忘川 提交于 2019-12-29 06:47:27
问题 The Firebase Analytics dashboard shows a card for demographics, including age and gender. According to https://support.google.com/firebase/answer/6317486?hl=en Firebase should be automatically collecting age and gender. Can anyone explain how it collects that information, and if anything else needs to be done in order to provide it? In my dashboard, I'm seeing no age or gender data. I also haven't found any public API in the firebase-analytics SDK that would allow for setting the age or

Disabling firebase automatic screen reporting

风格不统一 提交于 2019-12-28 13:43:12
问题 Is there a way to disable Firebase analytics automatic screen reporting? I have a few UIViewCOntroller's that i don't want to be reported. So i want to manage the screen reporting my self. Setting FirebaseAutomaticScreenReportingEnabled to NO didn't work Thanks 回答1: For 2018, you Info.plist will have entries like this: <key>FIREBASE_ANALYTICS_COLLECTION_ENABLED</key> <string>NO</string> <key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key> <string>YES</string> <key

'FirebaseAnalytics.Param.SIGN_UP_METHOD' is failing to save the 'value' along with 'Event name` in the console

非 Y 不嫁゛ 提交于 2019-12-25 08:38:16
问题 I'm using this code to analyse the sign_up method user is using: Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.SIGN_UP_METHOD, "sign_up_method"); mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SIGN_UP, bundle); as soon as the user sign up, above given code is supposed to save the event in the Firebase console. The problem is that the event is getting created but the there's nothing under the value column, i.e., sign_up_method is not getting shown. Here's a

Firebase Analytics Disable Audience Country Tracking

孤人 提交于 2019-12-24 17:05:54
问题 I'm working on an application where location tracking is strictly not allowed. I want to use Firebase Analytic's other features like PageTransitions and Crashalitics, but if I cannot disable the Audience location tracking, I cannot use any of it. Is this something I disable in the AndroidManifest and Info.plist files? Or something I disable in the console? Is it possible to disable just this one feature of Firebase Analytics? I'm using flutter with firebase dependencies: firebase_auth: 0.8.4

Unable to make Firebase work for a non Gradle build: Missing google_app_id. Firebase Analytics disabled

五迷三道 提交于 2019-12-24 10:24:43
问题 The app I am working on has a very customized build process. It's not possible to use gradle to build my app. It's not ideal, but I cannot change anything about it. Nevertheless, I want to use Firebase Analytics in my app. In included the modules firebase-core, firebase-common, firebase-analytics, firebase-analytics-impl, firebase-iid, firebase-iid-interop, firebase-measurement-connector, firebase-measurement-connector-imple, play-services-measurement-base and play-services-measurement-api. I

Firebase Analytics - setUserProperty persists through “app lifecycle”

给你一囗甜甜゛ 提交于 2019-12-23 22:27:59
问题 The documentation for the setUserProperty on FirebaseAnalytics states that the property "persists throughout the app lifecycle and across sessions." What exactly does "app lifecycle" mean here? Does it mean until a user uninstalls the app or would force killing the app reset the property values? 回答1: It means that once user property is set the value will be retained until the app is uninstalled. Closing the app or killing the app process by swiping it off the recent apps list will not clear

Firebase analytics event not show up on firebase console

妖精的绣舞 提交于 2019-12-23 11:07:05
问题 I have implement firebase analytics in my app, but not show up any event or log in fire base console. Add bellow code in each fragment in onCreateView() method. private void addFragmentInFirebaseAnalytics() { FirebaseAnalytics firebaseAnalytics = FirebaseAnalytics.getInstance(getContext()); FragmentItem fragmentItem = new FragmentItem(); fragmentItem.setFragmentId(Constant.FM_ID_MOIST_AIR); fragmentItem.setFragmentName(MoistAirActivity.class.getSimpleName()); Bundle bundle = new Bundle();

Firebase analytics event not show up on firebase console

霸气de小男生 提交于 2019-12-23 11:06:34
问题 I have implement firebase analytics in my app, but not show up any event or log in fire base console. Add bellow code in each fragment in onCreateView() method. private void addFragmentInFirebaseAnalytics() { FirebaseAnalytics firebaseAnalytics = FirebaseAnalytics.getInstance(getContext()); FragmentItem fragmentItem = new FragmentItem(); fragmentItem.setFragmentId(Constant.FM_ID_MOIST_AIR); fragmentItem.setFragmentName(MoistAirActivity.class.getSimpleName()); Bundle bundle = new Bundle();

Firebase analytics displays incorrect data in DebugView

拟墨画扇 提交于 2019-12-23 09:57:05
问题 I'm using Firebase Analytics. I registered two user properties and I have two custom events, each events includes 3 to 50 different options options. I met the problem that when I set the user property, very often DebugView displays the old user property for the event or is not displayed at all. Sometimes it works correctly. Please tell me how it can be fixed? My code. final class FirebaseAnalyticsManager { enum ScreenType { case editStoryScreen, homeScreen, previewStoryScreen,

Firebase not getting entry on console

此生再无相见时 提交于 2019-12-23 03:11:03
问题 I have implemented firebase in my project, but I am not getting an entry in firebase console. I have been trying so many different ways. Anybody have any idea what's going wrong? i have implement like this. firebaseAnalytics com.google.firebase.analytics.FirebaseAnalytics.getInstance(c); Bundle bundle = new Bundle(); // bundle.putString("Category", ""+Category); bundle.putString(FirebaseAnalytics.Param.ITEM_ID, Category); bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, Category); bundle