2021-09-18 23:37:52 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2022-10-16 12:00:58 +02:00
|
|
|
classpath("com.android.tools.build:gradle:7.3.1")
|
2021-09-18 23:37:52 +02:00
|
|
|
classpath(libs.kotlin.gradle)
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven(url = "https://pkgs.dev.azure.com/MicrosoftDeviceSDK/DuoSDK-Public/_packaging/Duo-SDK-Feed/maven/v1")
|
2022-09-18 15:18:13 +02:00
|
|
|
jcenter() // For tinypinyin
|
2021-09-18 23:37:52 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.create<Delete>("clean") {
|
|
|
|
|
delete(rootProject.buildDir)
|
2022-10-12 21:19:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
apply(from = "docs/deps-graph.gradle")
|