2019-03-29 04:21:06 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License.
|
|
|
|
*/
|
2019-03-21 22:10:25 +03:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.2.60'
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-03-30 03:08:55 +03:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
|
2019-03-21 22:10:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|