Aegis/build.gradle

34 lines
823 B
Groovy
Raw Normal View History

2016-08-15 19:29:41 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
2021-07-22 19:43:51 +00:00
mavenCentral()
google()
2016-08-15 19:29:41 +00:00
}
dependencies {
2023-12-27 14:21:47 +00:00
classpath 'com.android.tools.build:gradle:8.2.0'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.50'
2023-08-30 12:26:12 +00:00
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
2016-08-15 19:29:41 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.mikepenz.aboutlibraries.plugin' version '11.1.0'
}
2016-08-15 19:29:41 +00:00
allprojects {
repositories {
2021-07-22 19:43:51 +00:00
mavenCentral()
google()
maven { url 'https://jitpack.io' }
2021-07-22 19:43:51 +00:00
jcenter()
2016-08-15 19:29:41 +00:00
}
}
2023-08-30 12:26:12 +00:00
tasks.register('clean', Delete) {
2016-08-15 19:29:41 +00:00
delete rootProject.buildDir
}