Files
vpnhotspotmod/build.gradle
2018-04-15 10:10:13 -07:00

33 lines
778 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.1'
kotlinVersion = '1.2.31'
supportLibraryVersion = '27.1.1'
takisoftFixVersion = '27.1.1.0'
}
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()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}