skyline/build.gradle

39 lines
886 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-02-26 12:41:57 +01:00
ext {
kotlin_version = '1.7.21'
hilt_version = '2.44.2'
2021-02-26 12:41:57 +01:00
}
2021-01-31 22:11:26 +01:00
repositories {
google()
2021-01-31 22:11:26 +01:00
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_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
}
}
plugins {
id 'com.google.dagger.hilt.android' version "$hilt_version" apply false
}
allprojects {
repositories {
google()
2021-02-26 12:41:57 +01:00
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
}
tasks.register('clean') {
delete rootProject.buildDir
}