Android Firebase Analytics: predefined and custom parameters not working

前端 未结 1 1260
盖世英雄少女心
盖世英雄少女心 2021-01-28 02:00

I have application which use Firebase SDK and used some predefined event and parameters but some parameters are automatically added but not all parameters

For ex

1条回答
  •  执笔经年
    2021-01-28 02:35

    I'm supposing that your params object is a composed array with the similar values

    {
        "item_category" : "t-shirts",
        "item_name" : "abc",
        "item_location_id" : "ChIJiyj437sx3YAR9kUWC8QkLzQ",
        "currency" : "USD",
        "value" : 3.99,
        "coupon" : "zz123",
        "item_id" : "p7654",
        "quantity" : 1
    }
    

    If that is the case then you are in the right way to create the event. But you are trying to see the event values in the Parameter Reporting section in the Firebase Console. I analysed based on the image you attached.

    If you want to see the event values I recommend check the event dashboard report by clicking on the event name instead of the tab Parameter Reporting, follow this link, it shows you an example of how Firebase Events are organized in the Dashboard Console.

    I hope this helps you.

    0 讨论(0)
提交回复
热议问题