skyline/build.gradle

33 lines
821 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.30'
2021-01-31 22:11:26 +01:00
ext.lifecycle_version = '2.2.0'
ext.hilt_version = '2.31.2-alpha'
repositories {
google()
jcenter()
2021-01-31 22:11:26 +01:00
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2021-01-31 22:11:26 +01:00
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
2019-06-29 15:35:24 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}