2017-12-04 08:16:41 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-03-25 21:53:06 +02:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
2017-12-04 08:16:41 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.topjohnwu.snet"
|
2018-06-09 20:35:03 +02:00
|
|
|
minSdkVersion 14
|
2018-03-25 21:53:06 +02:00
|
|
|
targetSdkVersion rootProject.ext.compileSdkVersion
|
2018-08-22 05:50:21 +02:00
|
|
|
versionCode 11
|
|
|
|
versionName "snet"
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
2018-06-09 20:35:03 +02:00
|
|
|
shrinkResources true
|
2018-08-22 05:50:21 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-07-28 08:56:14 +02:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-08-22 05:50:21 +02:00
|
|
|
implementation 'com.google.android.gms:play-services-safetynet:15.0.1'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|