Aegis/build.gradle

33 lines
805 B
Groovy
Raw Normal View History

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()
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
}
}
plugins {
2024-09-21 13:07:34 +02:00
id 'com.mikepenz.aboutlibraries.plugin' version '11.2.3'
}
2016-08-15 21:29:41 +02:00
allprojects {
repositories {
2021-07-22 21:43:51 +02:00
mavenCentral()
google()
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
}