2017-12-13 22:44:56 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2021-02-21 13:03:40 -05:00
|
|
|
compileSdkVersion 30
|
2017-12-13 22:44:56 -05:00
|
|
|
defaultConfig {
|
2017-12-14 13:31:35 -05:00
|
|
|
applicationId "us.spotco.malwarescanner"
|
2017-12-27 17:19:50 -05:00
|
|
|
minSdkVersion 16
|
2021-04-14 02:45:05 -04:00
|
|
|
targetSdkVersion 29
|
2022-04-03 21:19:10 -04:00
|
|
|
versionCode 80
|
|
|
|
versionName "2.24"
|
2022-03-17 22:37:38 -04:00
|
|
|
resConfigs "en", "af", "de", "es", "fr", "it", "pt", "ru"
|
2017-12-16 15:02:10 -05:00
|
|
|
}
|
2017-12-13 22:44:56 -05:00
|
|
|
buildTypes {
|
2017-12-16 15:09:34 -05:00
|
|
|
debug {
|
2017-12-16 16:58:43 -05:00
|
|
|
applicationIdSuffix ".debug"
|
2017-12-16 15:09:34 -05:00
|
|
|
minifyEnabled true
|
2017-12-16 15:54:12 -05:00
|
|
|
zipAlignEnabled true
|
2018-04-16 20:10:10 -04:00
|
|
|
useProguard false
|
2017-12-16 15:09:34 -05:00
|
|
|
}
|
2017-12-13 22:44:56 -05:00
|
|
|
release {
|
2017-12-16 15:09:34 -05:00
|
|
|
shrinkResources true
|
|
|
|
minifyEnabled true
|
2017-12-16 15:54:12 -05:00
|
|
|
zipAlignEnabled true
|
2018-04-16 20:10:10 -04:00
|
|
|
useProguard true
|
2017-12-13 22:44:56 -05:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2021-09-20 16:36:04 -04:00
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-13 22:44:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2021-07-21 15:31:13 -04:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
|
|
implementation 'com.google.android.material:material:1.4.0'
|
2018-06-03 13:49:37 -04:00
|
|
|
}
|