2020-03-26 21:46:48 +03:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-13 03:00:49 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-07-20 22:41:25 +03:00
|
|
|
apply from: 'dependencies.gradle'
|
2020-03-26 21:46:48 +03:00
|
|
|
|
2020-02-13 03:00:49 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2020-07-20 22:41:25 +03:00
|
|
|
|
2020-02-13 03:00:49 +03:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-07-20 22:41:25 +03:00
|
|
|
classpath config.gradlePlugin
|
2020-02-13 03:00:49 +03:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2020-07-20 22:41:25 +03:00
|
|
|
classpath config.kotlinGradlePlugin
|
2020-02-13 03:00:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2020-03-26 21:46:48 +03:00
|
|
|
|
|
|
|
maven {
|
2020-07-20 22:41:25 +03:00
|
|
|
url config.duoSdkUrl
|
2020-03-26 21:46:48 +03:00
|
|
|
}
|
2020-02-13 03:00:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|