Increase dex scan size to prevent false positive

This commit is contained in:
iKirby
2023-08-01 11:18:52 +08:00
committed by GitHub
parent fe0b3fdce3
commit fa8fa60c3c

View File

@@ -353,7 +353,7 @@ class PerAppProxyActivity : AbstractActivity() {
) {
continue
}
if (packageEntry.size > 10000000) {
if (packageEntry.size > 15000000) {
foundChinaApps.add(packageName)
break
}