noise/build.gradle

30 lines
775 B
Groovy
Raw Permalink Normal View History

2021-06-28 15:21:19 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-07-11 12:12:08 +02:00
ext {
2021-12-13 15:00:46 +01:00
apollo_version = '2.5.11'
2021-07-11 12:12:08 +02:00
}
2021-06-28 15:21:19 +02:00
ext.kotlin_version = "1.5.20"
repositories {
google()
mavenCentral()
}
dependencies {
2021-12-13 15:00:46 +01:00
classpath 'com.android.tools.build:gradle:7.0.4'
2021-06-28 15:21:19 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}