Magisk/snet/build.gradle

31 lines
643 B
Groovy
Raw Normal View History

2017-10-07 09:12:36 +00:00
apply plugin: 'com.android.application'
android {
2017-10-29 06:43:43 +00:00
compileSdkVersion 27
2017-11-14 16:38:38 +00:00
buildToolsVersion "27.0.1"
2017-10-07 09:12:36 +00:00
defaultConfig {
2017-10-21 14:54:47 +00:00
applicationId "com.topjohnwu.snet"
2017-10-07 09:12:36 +00:00
minSdkVersion 21
2017-10-29 06:43:43 +00:00
targetSdkVersion 27
2017-10-07 09:12:36 +00:00
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2017-10-29 06:43:43 +00:00
}
2017-10-07 09:12:36 +00:00
2017-10-29 06:43:43 +00:00
repositories {
google()
2017-10-07 09:12:36 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2017-11-20 16:40:05 +00:00
implementation 'com.google.android.gms:play-services-safetynet:11.6.0'
2017-10-07 09:12:36 +00:00
}