Firebase Time Audience

I would like to determine the audience in Firebase based on the last event triggered. For example, I would like to reconnect users who have not opened the application (event: app_open) for the past 30 days.

I am trying to determine the audience based on these criteria without success.

Any help would be appreciated

+4
source share
1 answer

There is currently no way to do this. However, if you export to BigQuery, you can define an audience here (and ultimately make a list of players in that audience). If you want to target them with a notification, you will need to store on your server a list of GCM tokens (for iOS / Android), and then process the communication with the GCM servers to send push. This is not ideal, but today it is the only solution that I know of.

+1
source

Source: https://habr.com/ru/post/1649518/


All Articles