2015-09-04 02:15:03 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2017-09-19 13:08:52 -05:00
|
|
|
google()
|
2021-06-20 15:44:17 -04:00
|
|
|
mavenCentral()
|
2024-08-23 14:05:50 +05:30
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-11-22 20:59:39 +00:00
|
|
|
classpath libs.android.tools.build.gradle
|
|
|
|
classpath libs.kotlin.gradle.plugin
|
|
|
|
classpath libs.hilt.android.gradle.plugin
|
2024-11-27 16:20:49 +01:00
|
|
|
classpath libs.aboutlibraries.plugin
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-04 15:21:35 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.google.dagger.hilt.android' version '2.52' apply false
|
|
|
|
}
|
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-09-19 13:08:52 -05:00
|
|
|
google()
|
2021-06-20 15:44:17 -04:00
|
|
|
mavenCentral()
|
2018-10-09 12:22:30 -04:00
|
|
|
maven { url "https://jitpack.io" }
|
2022-08-09 19:19:03 -04:00
|
|
|
maven { url "https://repo.clojars.org" }
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
}
|