conventionschedule-android/build.gradle

30 lines
740 B
Groovy
Raw Permalink Normal View History

2018-07-09 17:16:33 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.8.10'
2018-07-09 17:16:33 +00:00
repositories {
google()
2018-07-13 21:09:43 +00:00
mavenCentral()
maven { url 'https://jitpack.io' }
2018-07-09 17:16:33 +00:00
}
dependencies {
2023-05-17 23:54:50 +00:00
classpath 'com.android.tools.build:gradle:7.4.2'
2018-07-09 17:16:33 +00: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()
2018-07-13 21:09:43 +00:00
mavenCentral()
maven { url 'https://jitpack.io' }
2018-07-09 17:16:33 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}