mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +03:00
- Bump version - Don't find files recursively on main thread - Reduce number of threadpools - Ensure there are always enough threads available - Cap the queue limit on thread pools - Do work on main thread if queues are full, thereby blocking - Use more thread safe objects - Replace some runnables with lambas - Code cleanup - Typo fixes Closes https://gitlab.com/divested-mobile/hypatia/-/issues/6 Closes https://github.com/Divested-Mobile/Hypatia/issues/13 Closes https://github.com/Divested-Mobile/Hypatia/issues/1 Signed-off-by: Tad <tad@spotco.us>
34 lines
948 B
Groovy
34 lines
948 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
defaultConfig {
|
|
applicationId "us.spotco.malwarescanner"
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
versionCode 76
|
|
versionName "2.22"
|
|
resConfigs "en", "de", "es", "fr", "it", "pt", "ru"
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".debug"
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
useProguard false
|
|
}
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
zipAlignEnabled true
|
|
useProguard true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
}
|