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
|
2017-12-04 08:16:41 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
2018-06-09 20:35:03 +02:00
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-06-09 20:35:03 +02:00
|
|
|
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
|
2017-12-19 08:51:01 +01:00
|
|
|
implementation 'com.google.android.gms:play-services-safetynet:7.0.0' /* The oldest version */
|
2017-12-04 08:16:41 +01:00
|
|
|
}
|