2017-11-04 16:44:55 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-05-10 23:44:56 +02:00
|
|
|
mavenCentral()
|
2021-06-05 15:45:03 +02:00
|
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
2021-10-18 18:33:47 +02:00
|
|
|
maven { url 'https://maven.google.com' }
|
2018-05-18 20:17:52 +02:00
|
|
|
google()
|
2017-11-04 16:44:55 +01:00
|
|
|
}
|
2021-06-05 15:45:03 +02:00
|
|
|
|
2017-11-04 16:44:55 +01:00
|
|
|
dependencies {
|
2024-02-20 21:52:20 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.2.2'
|
2017-11-04 16:44:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-05-10 23:44:56 +02:00
|
|
|
mavenCentral()
|
2018-05-18 20:17:52 +02:00
|
|
|
google()
|
2019-01-28 20:06:13 +01:00
|
|
|
maven { url 'https://jitpack.io' }
|
2017-11-04 16:44:55 +01:00
|
|
|
}
|
2018-02-14 22:41:17 +01:00
|
|
|
}
|
|
|
|
|
2023-12-14 23:17:04 +01:00
|
|
|
tasks.register('clean', Delete) {
|
|
|
|
delete rootProject.layout.buildDirectory
|
2019-01-19 11:53:12 +01:00
|
|
|
}
|