twigs-android/build.gradle

35 lines
795 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-05-31 01:19:41 +00:00
ext.dagger = '2.23.1'
2020-08-23 02:19:42 +00:00
ext.hyperion = '0.9.27'
2020-12-21 13:22:35 +00:00
ext.kotlin_version = '1.4.21'
ext.lifecycle_version = "2.2.0"
2020-05-31 01:19:41 +00:00
ext.moshi = '1.8.0'
ext.retrofit = '2.6.0'
ext.room_version = "2.2.5"
repositories {
google()
jcenter()
}
dependencies {
2021-02-15 16:39:54 +00:00
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}