Biswanath Maity
Biswanath Maity

Reputation: 170

How to filter by language in Firebase Analytics?

In my firebase console showing only 6 user properties(Age, App Version, Device Model, Gender, New/Established, OS Version ) but as per documentation there are 25 automatically collected user properties. I like to filter on Language properties. Is it require to Big Query ?

Upvotes: 2

Views: 2862

Answers (3)

looptheloop88
looptheloop88

Reputation: 3800

The best way to do this is to create an audience and use the user properties you've mentioned as the filters in the audience builder. Please note that the audience will start to accumulate data after you created it. Once the audience has data, you can use it as a filter in your analytics reports on the Firebase console.

Upvotes: 0

Udi Oshi
Udi Oshi

Reputation: 6867

If your application is already published in play store you don't need to add user property into firebase.

You can filter by device language in Play developer console. Go to your application dashboard > Statistics > CONFIGURE REPORT > Choose Language

Upvotes: 2

Biswanath Maity
Biswanath Maity

Reputation: 170

Though firebase collect language data from user but It not provides any stander filter by language. I have solved this issue using User properties.

about User Properties

private FirebaseAnalytics mFirebaseAnalytics;
mFirebaseAnalytics.setUserProperty("App_Lanaguage", Locale.getDefault().getDisplayLanguage());

I wrote the above code in my Application class.

Upvotes: 2

Related Questions