我已经在我的android应用程序中包含了带有用户id的google analytics。我想获得使用过我的应用程序的用户id的完整列表

我已经在我的android应用程序中包含了带有用户id的google analytics。我想获得使用过我的应用程序的用户id的完整列表,android,google-analytics,Android,Google Analytics,下面是包含userId的代码 tracker = GoogleAnalytics.getInstance(mContext) .newTracker(R.xml.app_tracker); tracker.enableAdvertisingIdCollection(true); if (isLogin) { tracker.set("&uid", UserPreferences.getInstance().getuserName

下面是包含userId的代码

tracker = GoogleAnalytics.getInstance(mContext)
                         .newTracker(R.xml.app_tracker);
tracker.enableAdvertisingIdCollection(true);

if (isLogin) {
    tracker.set("&uid", UserPreferences.getInstance().getuserName());
}

该功能不可批量使用,最接近的选项是使用User Explorer报告或将用户Id作为自定义维度包含并下载该报告,但是第二个选项需要注意发送到平台的元素数量,以避免高基数。谢谢您的回复。@Rohitlein您是通过这种方式获得用户id数据的吗?我采用了这种技术,用户id数据没有显示在我的属性中。