2019-06-03 23:25:05 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-06-08 18:43:57 +02:00
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 16:37:36 +02:00
|
|
|
mavenCentral()
|
2019-06-03 23:25:05 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-11-14 19:42:50 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.7.2'
|
2019-06-03 23:25:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 16:37:36 +02:00
|
|
|
mavenCentral()
|
2019-06-03 23:25:05 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-11 14:20:23 +01:00
|
|
|
tasks.register('clean', Delete) {
|
2024-09-19 19:18:28 +02:00
|
|
|
delete rootProject.layout.buildDirectory
|
2020-06-08 18:43:57 +02:00
|
|
|
}
|