Magisk/snet/build.gradle

27 lines
724 B
Groovy
Raw Normal View History

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"
minSdkVersion 21
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
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 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
}