如何使用用户的电话号码计算特定用户的屏幕视图

时间:2019-05-07 07:18:20

标签: android firebase analytics firebase-analytics

我试图通过提供个人资料中的电话号码来增加特定用户的总屏幕浏览量。

我能够获得特定屏幕视图的计数。但是我想跟踪用户属性之一的屏幕浏览量。

        //below code log an event for launcher screen for specific user 
        //using his/her phone number
        //bundle object
        Bundle bundle = new Bundle();
        //set screen name
        bundle.putString("ScreenName","SplashScreen");
        //set phone number from profile
        bundle.putString("UserPhone",phone);
        //logging event
        mFirebaseAnalytics.logEvent("SplashScreen",bundle);

其中一个用户属性的总屏幕浏览量,这里我使用PHONE_NUMBER作为用户属性。

0 个答案:

没有答案