2016-08-15 21:29:41 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-07-22 21:43:51 +02:00
|
|
|
mavenCentral()
|
2017-12-12 01:50:00 +01:00
|
|
|
google()
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-11-15 12:36:18 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.7.2'
|
2024-08-09 19:49:08 +02:00
|
|
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.52'
|
2023-08-30 14:26:12 +02:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
|
2016-08-15 21:29:41 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-19 22:22:44 +01:00
|
|
|
plugins {
|
2024-09-21 13:07:34 +02:00
|
|
|
id 'com.mikepenz.aboutlibraries.plugin' version '11.2.3'
|
2024-03-19 22:22:44 +01:00
|
|
|
}
|
|
|
|
|
2016-08-15 21:29:41 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-07-22 21:43:51 +02:00
|
|
|
mavenCentral()
|
2017-12-12 01:50:00 +01:00
|
|
|
google()
|
2017-08-13 19:51:54 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
2016-08-15 21:29:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-30 14:26:12 +02:00
|
|
|
tasks.register('clean', Delete) {
|
2016-08-15 21:29:41 +02:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|