blob: e1bc7dba6941c6ad3ccdd650fc3c2cb8f49ae605 [file] [log] [blame]
Douglas Sigelbaum519bb252017-08-16 20:01:33 -07001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4 ext.kotlin_version = '1.1.4'
5 repositories {
6 jcenter()
7 }
8 dependencies {
9 classpath 'com.android.tools.build:gradle:2.3.3'
10 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 }
12}
13
14allprojects {
15 repositories {
16 jcenter()
17 maven {
18 url 'https://maven.google.com'
19 }
20 }
21}
22
23task clean(type: Delete) {
24 delete rootProject.buildDir
25}