31 lines
1.3 KiB
Groovy
31 lines
1.3 KiB
Groovy
buildscript {
|
|
ext {
|
|
// https://developer.android.com/jetpack/androidx/releases/compose-ui
|
|
compose_version = '1.3.1'
|
|
// https://github.com/google/accompanist/releases
|
|
accompanist = '0.27.0'
|
|
// https://developer.android.com/jetpack/androidx/releases/compose-material3
|
|
material3 = '1.0.1'
|
|
// https://square.github.io/okhttp/changelogs/changelog/
|
|
okhttp_version = '4.10.0'
|
|
// https://github.com/square/retrofit/tags
|
|
retrofit_version = '2.9.0'
|
|
// https://developer.android.com/jetpack/androidx/releases/datastore
|
|
datastore = "1.0.0"
|
|
// https://github.com/skydoves/sandwich/releases
|
|
sandwich = "1.3.2"
|
|
// https://github.com/square/moshi/tags
|
|
moshi = "1.14.0"
|
|
}
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.3.1' apply false
|
|
id 'com.android.library' version '7.3.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
|
|
id 'com.google.dagger.hilt.android' version '2.44' apply false
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.10' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |