Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filter by user property doesn't work in Firebase Analytics

In order to test how the filter by user property works , I've did the bellow test :

1. I've run the bellow code, which set user property favorite_food to pizza . and send event called test_audience_event2 . it should associate the property to the event . right ?

FIRAnalytics.setUserPropertyString("pizza", forName: "favorite_food2") FIRAnalytics.logEventWithName("test_audience_event2", parameters: nil)

after 24 hours, i succeed to see test_audience_event2 as you can see in the bellow picture: enter image description here

2. Now I've set filter = userProperty.favorite_food2.pizza, but i got nothing as i can see in the bellow picture. why ? enter image description here

Thanks.

like image 349
david Avatar asked Jul 12 '16 11:07

david


1 Answers

Audiences have a 10 users threshold before showing data, maybe filtering also have a 10 users threshold ? Have you try launching your on 10 different device, or install-launch-uninstall-reinstall etc 10 times on one devices ?

like image 194
Sistr Avatar answered Oct 03 '22 00:10

Sistr