mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +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="testRunner" value="GRADLE" />
|
||||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
|
<option name="gradleJvm" value="Embedded JDK" />
|
||||||
<option name="modules">
|
<option name="modules">
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
|
|
|
@ -6,7 +6,7 @@ android {
|
||||||
applicationId "us.spotco.malwarescanner"
|
applicationId "us.spotco.malwarescanner"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 32
|
targetSdkVersion 32
|
||||||
versionCode 91
|
versionCode 93
|
||||||
versionName "2.28"
|
versionName "2.28"
|
||||||
resConfigs 'en', 'af', 'de', 'es', 'fi', 'fr', 'it', 'pl', 'pt', 'ru'
|
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 int MAX_SCAN_SIZE_REALTIME = MAX_SCAN_SIZE / 2; //40MB
|
||||||
public final static String DATABASE_URL_DEFAULT = "https://divested.dev/MalwareScannerSignatures/";
|
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();
|
public static final AtomicInteger FILES_SCANNED = new AtomicInteger();
|
||||||
private static ThreadPoolExecutor threadPoolExecutor = null;
|
private static ThreadPoolExecutor threadPoolExecutor = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue