Firebase自定义事件 - 在信息中心中看不到firebase参数

时间:2016-12-27 17:47:34

标签: android events firebase firebase-analytics

我正在制作li游戏,我想跟踪Android,用户如何使用不同的游戏币。为此,我写了以下方法:

Firebase Analytics

我使用了预定义的参数,例如ITEM_ID和VALUE,并使用我的货币名称发送事件,因为有多种货币,我想将它们区分为单独的事件。

但是,当我查看firebase控制台并从事件中选择事件时,我没有看到我添加到此事件的参数:

enter image description here

24小时过去了,没有更多的东西可以看。我已经在documentation中读到自定义参数不会显示在报告中,但是具有规定参数的自定义事件呢?

我是否真的需要使用Google预定义的public void trackInAppUpgrades(String id, int upgradePrice, String currencyName) { Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.ITEM_ID, id); bundle.putDouble(FirebaseAnalytics.Param.VALUE, (double)upgradePrice); firebaseAnalytics.logEvent(currencyName, bundle); } 来查看我想要跟踪的参数?

0 个答案:

没有答案