Hypatia/app/build.gradle
Tad de868c458f Bump versions
+ fix small quirk when too few sigs
2021-07-21 15:47:10 -04:00

34 lines
948 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
defaultConfig {
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 29
versionCode 74
versionName "2.21"
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'
}