Hypatia/app/build.gradle

35 lines
1 KiB
Groovy
Raw Normal View History

2017-12-13 22:44:56 -05:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
2017-12-14 13:31:35 -05:00
applicationId "us.spotco.malwarescanner"
2017-12-27 17:19:50 -05:00
minSdkVersion 16
2017-12-13 22:44:56 -05:00
targetSdkVersion 26
versionCode 27
2017-12-27 16:14:33 -05:00
versionName "2.2"
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
useProguard false
2017-12-16 15:54:12 -05:00
zipAlignEnabled true
2017-12-16 15:09:34 -05:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2017-12-13 22:44:56 -05:00
release {
2017-12-16 15:09:34 -05:00
shrinkResources true
minifyEnabled true
useProguard 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'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
2017-12-17 20:02:26 -05:00
implementation 'net.sf.trove4j:trove4j:3.0.3'
2017-12-26 18:54:57 -05:00
}