Files
vpnhotspotmod/build.gradle
2018-06-01 20:41:17 +08:00

34 lines
821 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext {
androidPluginVersion = '3.1.2'
kotlinVersion = '1.2.41'
supportLibraryVersion = '27.1.1'
takisoftFixVersion = '27.1.1.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$androidPluginVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}