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
|
2023-07-09 10:41:13 -04:00
|
|
|
versionCode 105
|
2023-05-04 16:08:08 -04:00
|
|
|
versionName "2.32"
|
2023-07-09 10:41:13 -04:00
|
|
|
resConfigs 'en', 'af', 'de', 'el', 'es', 'fi', 'fr', 'it', 'pl', 'pt', 'ru', 'tr', 'zh-rCN'
|
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 {
|
2023-04-24 18:09:49 -04:00
|
|
|
implementation 'commons-io:commons-io:2.5'
|
2023-04-16 12:31:12 -04:00
|
|
|
implementation 'org.bouncycastle:bcpg-jdk15to18:1.73'
|
2018-06-03 13:49:37 -04:00
|
|
|
}
|