Hypatia/app/build.gradle
Tad 2b878f2058 Bump version for translations
Signed-off-by: Tad <tad@spotco.us>
2022-07-14 00:27:51 -04:00

37 lines
1,017 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 29
versionCode 84
versionName "2.26"
resConfigs "en", "af", "de", "es", "fi", "fr", "it", "pl", "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'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
}