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-13 22:44:56 -05:00
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 26
|
2017-12-17 06:16:43 -05:00
|
|
|
versionCode 15
|
|
|
|
versionName "1.7"
|
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
|
|
|
|
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'
|
|
|
|
}
|