Hypatia/app/build.gradle
2021-01-31 03:10:08 -05:00

34 lines
912 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 29
versionCode 49
versionName "2.11"
resConfigs "en"
}
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.2.1'
}