mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +03:00
Tested on Android 7.1.2, 8.1.0, 10, 11, and 13: - Install app - Update databases - Write test files - Enable system scan - Run a scan - Check signature count - Enable realtime scanner - Write test files - Ignore a detection - Look up a detection - Delete a detection - Copy file over MTP and confirm detection Signed-off-by: Tad <tad@spotco.us>
35 lines
952 B
Groovy
35 lines
952 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
defaultConfig {
|
|
applicationId "us.spotco.malwarescanner"
|
|
minSdkVersion 19
|
|
targetSdkVersion 32
|
|
versionCode 122
|
|
versionName "3.0"
|
|
resConfigs 'en', 'af', 'de', 'el', 'es', 'fi', 'fr', 'it', 'pl', 'pt', 'ru', 'tr', 'zh-rCN'
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
}
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lint {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'commons-io:commons-io:2.5'
|
|
implementation 'org.bouncycastle:bcpg-jdk15to18:1.73'
|
|
implementation 'com.google.guava:guava:33.0.0-jre'
|
|
}
|