mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-02-28 21:38:21 +03:00
Increase hash length due to false positive repots
Signed-off-by: Tad <tad@spotco.us>
This commit is contained in:
parent
833eae3841
commit
4c65d96a81
3 changed files with 3 additions and 2 deletions
1
.idea/gradle.xml
generated
1
.idea/gradle.xml
generated
|
@ -8,6 +8,7 @@
|
|||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleJvm" value="Embedded JDK" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
|
|
|
@ -6,7 +6,7 @@ android {
|
|||
applicationId "us.spotco.malwarescanner"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 32
|
||||
versionCode 91
|
||||
versionCode 93
|
||||
versionName "2.28"
|
||||
resConfigs 'en', 'af', 'de', 'es', 'fi', 'fr', 'it', 'pl', 'pt', 'ru'
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ class Utils {
|
|||
public final static int MAX_SCAN_SIZE_REALTIME = MAX_SCAN_SIZE / 2; //40MB
|
||||
public final static String DATABASE_URL_DEFAULT = "https://divested.dev/MalwareScannerSignatures/";
|
||||
|
||||
public final static int MAX_HASH_LENGTH = 10;
|
||||
public final static int MAX_HASH_LENGTH = 12;
|
||||
|
||||
public static final AtomicInteger FILES_SCANNED = new AtomicInteger();
|
||||
private static ThreadPoolExecutor threadPoolExecutor = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue