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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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