2019-06-04 02:25:05 +05: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-04 02:25:05 +05:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 16:37:36 +02:00
|
|
|
mavenCentral()
|
2019-06-04 02:25:05 +05:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-12-18 19:22:34 +05:00
|
|
|
classpath 'com.android.tools.build:gradle:8.7.3'
|
2019-06-04 02:25:05 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 16:37:36 +02:00
|
|
|
mavenCentral()
|
2019-06-04 02:25:05 +05:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-11 13:20:23 +00:00
|
|
|
tasks.register('clean', Delete) {
|
2024-09-19 17:18:28 +00:00
|
|
|
delete rootProject.layout.buildDirectory
|
2020-06-08 18:43:57 +02:00
|
|
|
}
|