Skip to content

Instantly share code, notes, and snippets.

@antonkazakov
Last active July 2, 2017 20:43
Show Gist options
  • Save antonkazakov/5c05e60080969786e23a76acdbfe144e to your computer and use it in GitHub Desktop.
Save antonkazakov/5c05e60080969786e23a76acdbfe144e to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.2-3'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment