我需要为我的Android APK设置逻辑,如果移动设备已 Root ,则它应该向用户显示您使用已 Root 设备的弹出窗口并退出apk。有人帮助TIA。

最佳答案

首先在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

09-11 17:57