Magisk/snet/build.gradle

28 lines
743 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 14
2018-03-25 21:53:06 +02:00
targetSdkVersion rootProject.ext.compileSdkVersion
2018-10-28 21:07:34 +01:00
versionCode 12
2018-08-22 05:50:21 +02:00
versionName "snet"
2017-12-04 08:16:41 +01:00
}
buildTypes {
release {
minifyEnabled true
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-10-28 21:07:34 +01:00
implementation 'com.google.android.gms:play-services-safetynet:16.0.0'
2017-12-04 08:16:41 +01:00
}