Aegis/build.gradle

30 lines
743 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 {
2022-10-09 10:51:06 +00:00
classpath 'com.android.tools.build:gradle:7.3.0'
2022-10-03 17:29:06 +00:00
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
2022-08-03 18:38:10 +00:00
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19'
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
}
}
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
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}