conventionschedule-android/build.gradle

40 lines
1.0 KiB
Groovy
Raw 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 {
2021-09-06 04:29:23 +00:00
ext.kotlin_version = '1.5.30'
2018-07-09 17:16:33 +00:00
repositories {
google()
2021-05-22 13:54:45 +00:00
// jcenter()
2018-07-13 21:09:43 +00:00
mavenCentral()
maven { url 'https://jitpack.io' }
2021-09-06 04:29:23 +00:00
// maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
flatDir {
dirs 'libs'
}
2018-07-09 17:16:33 +00:00
}
dependencies {
2021-09-06 04:29:23 +00:00
classpath 'com.android.tools.build:gradle:7.0.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()
2021-05-22 13:54:45 +00:00
// jcenter()
2018-07-13 21:09:43 +00:00
mavenCentral()
maven { url 'https://jitpack.io' }
2021-09-06 04:29:23 +00:00
// maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
flatDir {
dirs 'libs'
}
2018-07-09 17:16:33 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}