Hypatia/app/build.gradle
Tad 28f710d5ad More small improvements
- Don't try to load the database multiple times at once
- Add the signature count to the notification
- Format numbers for the locale
- Improve check for when no databases are available
2021-02-22 23:28:07 -05:00

34 lines
924 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 30
versionCode 58
versionName "2.15"
resConfigs "en", "de", "fr"
}
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.2.0'
implementation 'com.google.android.material:material:1.3.0'
}