Hypatia/app/build.gradle

43 lines
1.4 KiB
Groovy
Raw Permalink Normal View History

2017-12-13 22:44:56 -05:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
2017-12-13 22:44:56 -05:00
defaultConfig {
2017-12-14 13:31:35 -05:00
applicationId "us.spotco.malwarescanner"
minSdkVersion 16
targetSdkVersion 32
versionCode 310
versionName "3.10"
resConfigs 'en', 'af', 'cs', 'de', 'el', 'es', 'fi', 'fr', 'gl', 'it', 'pl', 'pt', 'pt-rBR', '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 {
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
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-12-13 22:44:56 -05:00
}
}
lint {
abortOnError false
}
packagingOptions {
exclude 'org/bouncycastle/pqc/crypto/picnic/lowmcL1.bin.properties'
exclude 'org/bouncycastle/pqc/crypto/picnic/lowmcL3.bin.properties'
exclude 'org/bouncycastle/pqc/crypto/picnic/lowmcL5.bin.properties'
exclude 'org/bouncycastle/x509/CertPathReviewerMessages.properties'
exclude 'org/bouncycastle/x509/CertPathReviewerMessages_de.properties'
}
2017-12-13 22:44:56 -05:00
}
dependencies {
implementation 'commons-io:commons-io:2.5'
implementation 'org.bouncycastle:bcpg-jdk15to18:1.77'
implementation 'com.google.guava:guava:33.0.0-jre'
2018-06-03 13:49:37 -04:00
}