2018-07-26 17:04:44 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-09-25 03:07:26 +02:00
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://jitpack.io" }
|
2018-07-26 17:04:44 +02:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-07-15 13:06:29 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.2'
|
2023-08-21 10:09:07 +02:00
|
|
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
|
2018-07-26 17:04:44 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-15 13:06:29 +02:00
|
|
|
|
2018-07-26 17:04:44 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2018-12-27 04:29:02 +01:00
|
|
|
mavenCentral()
|
2021-09-25 03:07:26 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
jcenter()
|
2018-07-26 17:04:44 +02:00
|
|
|
}
|
2023-10-20 09:31:53 +02:00
|
|
|
}
|