firebase-analytics

Firebase ITEM_NAME not visible in Analytics dashboard

二次信任 提交于 2021-02-07 05:46:23
问题 I am trying to see which parts of my app are most used, for this I have added a logEvent like this: Bundle bundle= new Bundle(); bundle.putString(FirebaseAnalytics.Param.ITEM_CATEGORY, "action"); bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, "screen_a"); FirebaseAnalytics.getInstance(context).logEvent(FirebaseAnalytics.Event,VIEW_ITEM, bundle); The events get logged and I can see in my Dashboard under Events section a view_item entry with the Count, however, when I enter it, I can see

Firebase BigQuery export - Historical data

跟風遠走 提交于 2021-02-05 10:45:28
问题 When I try to search for historical data for events on BigQuery I can only find events from the last week. I couldn't find anywhere the information if this is correct, or if I am doing something wrong. Basically it seems that I can only query events_YYYYMMDD from the past week. Is this correct? 回答1: Did you by any chance enable the BigQuery export from Firebase a week ago? Keep in mind: Firebase will only write to BigQuery that it receives from the moment you enable the integration. It won't

How get acess to data Audiences of Firebase Analytics

随声附和 提交于 2021-02-05 09:29:37
问题 I need any log or data of Audiences by Big Query, how to consult this in a non-manual way through events? I need firebase analytics groups and audience data 回答1: When you connect the Analytics from your Firebase project to BigQuery, only the raw events are exported to BigQuery. Neither audience definitions, not audience membership are exported to BigQuery. So if you want to see audiences in your BigQuery based reports, you'll have to (re)create both the audience definitions and memberships

Firebase: Reporting Analytics and Crash Data to Separate Projects

送分小仙女□ 提交于 2021-02-04 15:28:19
问题 Recently I came across this article from firebase, which details how to access multiple projects from a single application. This is great, and potentially very useful, however I have been unable to find a way to separate out using Analytics and Crash reporting into separate projects. The reason we would like to do this is so that our clients have full access to their analytics, whilst keeping the crash logs in a different project that only we can access. I did see that on the article it

Disable auto-activity tracking in Firebase

ぐ巨炮叔叔 提交于 2021-02-04 11:52:27
问题 I'm wondering, are there any way to disable analytics auto activity tracking? I have view hierarchy based on fragments and there are few cases: Activity that have one fragment always. Activity that can have different fragments as root. Activity with root fragment, that contains ViewPager with other fragments. I use such a code in fragments from Firebase docs to track custom screens: mFirebaseAnalytics.setCurrentScreen(getActivity(), "some_fragment_1", null); In first case, I want to track

How can I retrieve Firebase user properties?

↘锁芯ラ 提交于 2021-01-29 11:00:54
问题 Is there any way to retrieve Firebase user properties in Analytics for Firebase ? For example, Analytics has all user records. I want to retrieve a record about user information, such as country code, etc. using Analytics. Is there any API available for this? 回答1: Google Analytics for Firebase doesn't retain any PII (Personally Identifiable Information) about anyone using your app. It aggregates information across users. It doesn't associate specific user information from Firebase

How to get an export of firebase analytics full historic data?

允我心安 提交于 2021-01-29 10:31:09
问题 I have setup Firebase analytics data to BigQuery. However I received my first export today and it contains all yesterdays user statistics. That is great but I need lifetime statistics history or at least last month's data. Do I already have access to my entire historic analytics data threw Big Query but I and I do not know how to access it? If so can you point to documentation or give a quick walk threw? Is it even possible to get the full (or at least a longer period than a day) historic

Is it possible for the FirebaseAnalytics instance in my Library project to send the tracked events into a Firebase project that isn't the app's? [duplicate]

南楼画角 提交于 2021-01-29 06:21:32
问题 This question already has an answer here : Include Firebase Analytics in library (1 answer) Closed 2 years ago . I have a Library Project consisting of a single Activity with various fragments and helper classes. I have FirebaseAnalytics put inside this library project, put in its own helper class. The instance in that helper class was retrieved using the code: private val firebaseAnalytics = FirebaseAnalytics.getInstance(LibInterface.getInstance().srcApp) As can be inferred from the code, I

Firebase dashboard doesn't show price in top products

不羁岁月 提交于 2021-01-28 07:43:30
问题 In the Firebase dashboard, when looking at the add_to_cart event, I can see the price parameter firing with values succesfully: But then below, in the "top products" window, I cannot see any prices: I'm trying to understand why. Is it because I'm not sending the value parameter (I'm only sending the price and currency) Thanks 回答1: The events summary in your first screenshot shows the price parameter sent. This could be a string, a number, anything. In your case it's a number. The products

DebugView no devices available

♀尐吖头ヾ 提交于 2021-01-27 12:53:14
问题 I'm doing some tests on a small app to understand how firebase-analytics works. This is the code for the MainActivity: public class MainActivity extends AppCompatActivity { private FirebaseAnalytics mFirebaseAnalytics; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mFirebaseAnalytics = FirebaseAnalytics.getInstance(getApplicationContext()); mFirebaseAnalytics.setAnalyticsCollectionEnabled(true);