我需要为我的Android APK设置逻辑,如果移动设备已扎根,则它应该向用户显示使用已扎根设备的弹出窗口并退出apk。有人帮助TIA。
答案 0 :(得分:0)
首先在gradle中的库下面实现
implementation 'com.scottyab:rootbeer-lib:0.0.7'
并运行以下代码以检查设备是否为root。
RootBeer rootBeer = new RootBeer(context);
if (rootBeer.isRooted()) {
//we found indication of root
} else {
//we didn't find indication of root
}
来源:Git