2020-11-20 15:38:08 +01:00
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
2021-08-14 17:06:49 +02:00
|
|
|
mavenCentral()
|
2020-11-20 15:38:08 +01:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2023-06-04 11:35:56 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.0.2'
|
2023-03-11 18:12:46 +01:00
|
|
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
|
2020-11-20 15:38:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
2021-08-14 17:06:49 +02:00
|
|
|
mavenCentral()
|
2021-07-25 14:39:33 +02:00
|
|
|
maven {
|
|
|
|
|
url 'https://jitpack.io'
|
|
|
|
|
}
|
|
|
|
|
maven {
|
2021-08-01 16:31:38 +02:00
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
2021-07-25 14:39:33 +02:00
|
|
|
}
|
2021-08-14 17:06:49 +02:00
|
|
|
jcenter()
|
2020-11-20 15:38:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|