2016-05-19 07:37:28 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-11-20 10:44:25 +01:00
|
|
|
mavenCentral()
|
2017-12-11 15:24:50 +01:00
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com/'
|
|
|
|
name 'Google'
|
|
|
|
}
|
2018-09-27 19:16:52 +02:00
|
|
|
google()
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-06-30 21:39:12 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.0.2'
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
2017-12-11 15:24:50 +01:00
|
|
|
ext {
|
2020-12-23 09:48:08 +01:00
|
|
|
compileSdkVersion = '28'
|
2022-01-28 16:48:26 +01:00
|
|
|
defaultMinSdkVersion = 26
|
2021-04-09 20:32:43 +02:00
|
|
|
defaultTargetSdkVersion = 30
|
2020-05-11 20:49:29 +02:00
|
|
|
defaultVersionCode = 1
|
2017-12-11 15:24:50 +01:00
|
|
|
}
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-11-20 10:44:25 +01:00
|
|
|
mavenCentral()
|
2017-12-11 15:24:50 +01:00
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com/'
|
|
|
|
name 'Google'
|
|
|
|
}
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
}
|
2021-03-12 14:02:17 +01:00
|
|
|
|
2024-03-26 21:20:53 +01:00
|
|
|
tasks.register('clean', Delete) {
|
2016-05-19 07:37:28 +02:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2017-12-11 15:24:50 +01:00
|
|
|
|
2024-04-17 20:01:13 +02:00
|
|
|
dependencies {}
|