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
|
|
|
|
versionCode 1
|
2017-12-13 22:46:02 -05:00
|
|
|
versionName "1.0" }
|
2017-12-13 22:44:56 -05:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
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.constraint:constraint-layout:1.0.2'
|
|
|
|
implementation 'com.android.support:design:26.1.0'
|
2017-12-13 23:42:10 -05:00
|
|
|
implementation 'com.google.guava:guava:23.5-android'
|
2017-12-13 22:44:56 -05:00
|
|
|
}
|