Infinity-For-Lemmy/build.gradle

30 lines
664 B
Groovy
Raw Normal View History

2018-07-26 17:04:44 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
2021-09-25 03:07:26 +02:00
mavenCentral()
maven { url "https://jitpack.io" }
2018-07-26 17:04:44 +02:00
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
2018-07-26 17:04:44 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
2021-09-25 03:07:26 +02:00
maven { url "https://jitpack.io" }
jcenter()
2018-07-26 17:04:44 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}