twigs-android/build.gradle

31 lines
621 B
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-12-20 17:41:21 +00:00
ext.compose = '1.3.1'
ext.dagger = '2.44'
ext.hyperion = '0.9.33'
2022-12-20 17:41:21 +00:00
ext.kotlin_version = '1.7.20'
ext.lifecycle_version = "2.2.0"
ext.moshi = '1.12.0'
2020-05-31 01:19:41 +00:00
ext.retrofit = '2.6.0'
ext.room_version = "2.2.5"
repositories {
google()
mavenCentral()
}
dependencies {
2022-12-20 17:41:21 +00:00
classpath libs.bundles.plugins
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}