Hypatia/app/build.gradle
Tavi 595dbc306c
Add the Galician tranlsations from @ghose
+ bump version
+ enable pt-rBR
+ closes https://gitlab.com/divested-mobile/hypatia/-/issues/51

Signed-off-by: Tavi <tavi@divested.dev>
2024-04-20 20:47:47 -04:00

35 lines
975 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 33
defaultConfig {
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 32
versionCode 308
versionName "3.08"
resConfigs 'en', 'af', 'cs', 'de', 'el', 'es', 'fi', 'fr', 'gl', 'it', 'pl', 'pt', 'pt-rBR', 'ru', 'tr', 'zh-rCN'
}
buildTypes {
debug {
applicationIdSuffix ".debug"
minifyEnabled true
zipAlignEnabled true
}
release {
shrinkResources true
minifyEnabled true
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lint {
abortOnError false
}
}
dependencies {
implementation 'commons-io:commons-io:2.5'
implementation 'org.bouncycastle:bcpg-jdk15to18:1.77'
implementation 'com.google.guava:guava:33.0.0-jre'
}