我怎样才能得到统计数据,有多少我的用户有root手机?Google/Firebase分析是否会生成此类报告?(我没有使用Google Analytics或Firebase的经验)我看了以前的stackoverflow文章,但没有帮助。我也在google上查了一下,但什么也没有。
wr98u20j1#
不幸的是,您必须执行手动操作才能访问这些信息。例如,您可以编写一个函数来检测根设备并在相关函数中发送事件。您可以使用下面的代码来检测根设备。
RootBeer rootBeer = new RootBeer(context); if (rootBeer.isRooted()) { //we found indication of root - send firebase event } else { //we didn't find indication of root }
库:implementation 'com.scottyab:rootbeer-lib:0.1.0'
implementation 'com.scottyab:rootbeer-lib:0.1.0'
1条答案
按热度按时间wr98u20j1#
不幸的是,您必须执行手动操作才能访问这些信息。
例如,您可以编写一个函数来检测根设备并在相关函数中发送事件。
您可以使用下面的代码来检测根设备。
库:
implementation 'com.scottyab:rootbeer-lib:0.1.0'