2017-12-13 22:44:56 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2022-08-21 19:41:54 -04:00
|
|
|
compileSdkVersion 33
|
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
|
2022-08-21 19:41:54 -04:00
|
|
|
targetSdkVersion 32
|
2022-12-03 16:09:13 -05:00
|
|
|
versionCode 88
|
2022-07-14 00:23:59 -04:00
|
|
|
versionName "2.26"
|
2022-08-21 19:41:54 -04:00
|
|
|
resConfigs 'en', 'af', 'de', 'es', 'fi', 'fr', 'it', 'pl', '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
|
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
|
2017-12-13 22:44:56 -05:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2022-08-21 19:41:54 -04:00
|
|
|
lint {
|
2021-09-20 16:36:04 -04:00
|
|
|
abortOnError false
|
|
|
|
}
|
2017-12-13 22:44:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-10-17 21:00:52 -04:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
2022-08-21 19:41:54 -04:00
|
|
|
implementation 'com.google.android.material:material:1.6.1'
|
2018-06-03 13:49:37 -04:00
|
|
|
}
|