Android APP合规检查,你可能需要这个工具~

虽迟但到,这是一个通过拦截Java方法调用用以检测应用是否合规的工具,如果你的APP正饱受监管部门或应用市场时不时下发整改通知的折磨,那么用它来检查你的代码以及引用的三方库是再好不过的选择了!

如何引入

Step 1. 添加 mavenCentral

gradle 复制代码
allprojects {
    	repositories {
    		...
    	 mavenCentral()
    	}
    }

Step 2. 添加 Gradle 依赖

gradle 复制代码
dependencies {
        ...
        implementation 'io.github.loper7:miit-rule-checker:0.1.1'
    }

如何使用

检查APP内是否存在不合规的方法调用

检查MIITRuleChecker内置的不合规的方法,具体可见下方方法列表

kotlin 复制代码
 MIITRuleChecker.checkDefaults()

如果内置的方法不满足当前需求,可自定义方法添加到list中进行检查;

比如新增一个 MainActivity 的 onCreate 方法的调用检查;

kotlin 复制代码
val list = MIITMethods.getDefaultMethods()
list.add(MainActivity::class.java.getDeclaredMethod("onCreate" , Bundle::class.java)) MIITRuleChecker.check(list)

当然,如果你想检查多个内置方法外的方法,只需要创建一个新的集合,往集合里放你想检查的方法member,然后传入 MIITRuleChecker.check()内即可。

log打印如下所示:

检查指定方法调用并查看调用栈堆

kotlin 复制代码
//查看 WifiInfo class 内 getMacAddress 的调用栈堆
MIITRuleChecker.check(MIITMethods.WifiInfo.getMacAddress)

log打印如下所示:

检查一定时间内指定方法调用次数统计

kotlin 复制代码
//多个方法统计 (deadline 为从方法调用开始到多少毫秒后截至统计)
val list = mutableListOf<Member?>().apply {
add(MIITMethods.LocationManager.getLastKnownLocation)
add(MIITMethods.LocationManager.requestLocationUpdates)
add(MIITMethods.Secure.getString)
}
MIITMethodCountChecker.startCount(list , 20 * 1000)

//单个方法统计(deadline 为从方法调用开始到多少毫秒后截至统计)
MIITMethodCountChecker.startCount(MIITMethods.LocationManager.getLastKnownLocation , deadline = 20 * 1000)

log打印如下所示:

检查完成并完成整改后务必移除方法 miit-rule-checker 库内的所有方法调用,将库一起移除最好

内置方法表

内置常量 对应的系统方法 备注
MIITMethods.WifiInfo.getMacAddress android.net.wifi.WifiInfo.getMacAddress() 获取MAC地址
MIITMethods.WifiInfo.getIpAddress android.net.wifi.WifiInfo.getIpAddress() 获取IP地址
MIITMethods.LocationManager.getLastKnownLocation android.location.LocationManager.getLastKnownLocation(String) 获取上次定位的地址
MIITMethods.LocationManager.requestLocationUpdates android.location.LocationManager.requestLocationUpdates(String,Long,Float,LocationListener)
MIITMethods.NetworkInterface.getHardwareAddress java.net.NetworkInterface.getHardwareAddress() 获取主机地址
MIITMethods.ApplicationPackageManager.getInstalledPackages android.app.ApplicationPackageManager.getInstalledPackages(Int) 获取已安装的应用
MIITMethods.ApplicationPackageManager.getInstalledApplications android.app.ApplicationPackageManager.getInstalledApplications(Int) 获取已安装的应用
MIITMethods.ApplicationPackageManager.getInstallerPackageName android.app.ApplicationPackageManager.getInstallerPackageName(String) 获取应用安装来源
MIITMethods.ApplicationPackageManager.getPackageInfo android.app.ApplicationPackageManager.getPackageInfo(String,Int) 获取应用信息
MIITMethods.PackageManager.getInstalledPackages android.content.pm.PackageManager.getInstalledPackages(Int) 获取已安装的应用
MIITMethods.PackageManager.getInstalledApplications android.content.pm.PackageManager.getInstalledApplications(Int) 获取已安装的应用
MIITMethods.PackageManager.getInstallerPackageName android.content.pm.PackageManager.getInstallerPackageName(String) 获取应用安装来源
MIITMethods.PackageManager.getPackageInfo android.content.pm.PackageManager.getPackageInfo(String,Int) 获取应用信息
MIITMethods.PackageManager.getPackageInfo1 android.content.pm.PackageManager.getPackageInfo(String,PackageInfoFlags) 获取应用信息(版本号大于33)
MIITMethods.PackageManager.getPackageInfo2 android.content.pm.PackageManager.getPackageInfo(VersionedPackage,Int) 获取应用信息(版本号大于26)
MIITMethods.PackageManager.getPackageInfo3 android.content.pm.PackageManager.getPackageInfo(VersionedPackage,PackageInfoFlags) 获取应用信息(版本号大于33)
MIITMethods.Secure.getString android.provider.Settings.Secure.getString(ContentResolver,String) 获取androidId
MIITMethods.TelephonyManager.getDeviceId android.telephony.TelephonyManager.getDeviceId() 获取 DeviceId
MIITMethods.TelephonyManager.getDeviceIdWithInt android.telephony.TelephonyManager.getDeviceId(Int) 获取 DeviceId
MIITMethods.TelephonyManager.getImei android.telephony.TelephonyManager.getImei() 获取 Imei
MIITMethods.TelephonyManager.getImeiWithInt android.telephony.TelephonyManager.getImei(Int) 获取 Imei
MIITMethods.TelephonyManager.getSubscriberId android.telephony.TelephonyManager.getSubscriberId() 获取 SubscriberId

相关文章

Github

联系我

相关推荐
北海屿鹿26 分钟前
【MySQL】内置函数
android·数据库·mysql
臻一1 小时前
rk3576+安卓14 ---上电时序调整
android
踢球的打工仔2 小时前
typescript-接口的基本使用(一)
android·javascript·typescript
极智-9962 小时前
GitHub 热榜项目-日榜精选(2026-01-24)| AI智能体工具、Python生态等 | remotion、VibeVoice、goose等
人工智能·python·github·ai智能体·大模型部署·语音ai
徐小夕@趣谈前端2 小时前
NO-CRM 2.0正式上线,Vue3+Echarts+NestJS实现的全栈CRM系统,用AI重新定义和实现客户管理系统
前端·javascript·人工智能·开源·编辑器·echarts
2501_915918413 小时前
如何在iPad上找到并打开文件夹的完整指南
android·ios·小程序·uni-app·iphone·webview·ipad
github.com/starRTC4 小时前
Claude Code中英文系列教程17:将Claude Code集成在GitLab工作流里面
git·gitlab·github
臻一5 小时前
rk3576+安卓14---uboot
android
2501_944521595 小时前
Flutter for OpenHarmony 微动漫App实战:主题配置实现
android·开发语言·前端·javascript·flutter·ecmascript
时光慢煮6 小时前
Flutter × OpenHarmony 跨端开发实战:动态显示菜单详解
flutter·华为·开源·openharmony