I'm having a hard time configuring my audiences in the Firebase console based on the custom event parameters I'm passing in my custom "test_event".
Below is the structure of a "test_event" as seen in Google BigQuery JSON table -
{
"name": "test_event",
"params": [
{
"key": "aoi_name",
"value": {
"string_value": "update_button",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "firebase_event_origin",
"value": {
"string_value": "app",
"int_value": null,
"float_value": null,
"double_value": null
}
},
{
"key": "screen_name",
"value": {
"string_value": "main_activity",
"int_value": null,
"float_value": null,
"double_value": null
}
} ]
What I want to observe is an audience clicking on "update_button" on the "main_activity" screen. Based on events of similar kind, I want to create Funnels for observing my user flows.
The problem is whenever I create an Audience -
It shows me no activity and number of users is always 0. Is this not the correct way to achieve the funnels I want?