110 lines
4.3 KiB
TOML
110 lines
4.3 KiB
TOML
[versions]
|
|
# SDK / build
|
|
compileSdk = "36"
|
|
minSdk = "26"
|
|
targetSdk = "36"
|
|
versionName = "1.0"
|
|
versionCode = "1"
|
|
|
|
agp = "8.12.0"
|
|
kotlin = "1.9.24"
|
|
jvmTarget = "17"
|
|
kotlinCompilerExtension = "1.5.14"
|
|
|
|
# KotlinX
|
|
coroutines = "1.8.1"
|
|
serialization = "1.6.3"
|
|
kotlinxImmutable = "0.3.8"
|
|
|
|
# AndroidX / Google
|
|
coreKtx = "1.10.1"
|
|
appcompat = "1.6.1"
|
|
activityCompose = "1.8.0"
|
|
navigation = "2.8.5"
|
|
paging = "3.3.2"
|
|
composeBom = "2024.10.00"
|
|
material = "1.13.0"
|
|
|
|
# DI
|
|
hilt = "2.50"
|
|
hiltNavCompose = "1.2.0"
|
|
|
|
# Network
|
|
retrofit = "2.11.0"
|
|
okhttp = "4.12.0"
|
|
moshi = "1.15.1"
|
|
jsoup = "1.17.2"
|
|
|
|
# DB
|
|
room = "2.6.1"
|
|
|
|
# Images
|
|
coil = "2.7.0"
|
|
|
|
|
|
[libraries]
|
|
# KotlinX
|
|
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
|
|
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "coroutines" }
|
|
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization" }
|
|
kotlinx-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collections-immutable", version.ref = "kotlinxImmutable" }
|
|
|
|
# AndroidX base
|
|
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" }
|
|
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
|
|
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" }
|
|
|
|
# Compose (BOM)
|
|
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "composeBom" }
|
|
compose-ui = { module = "androidx.compose.ui:ui" }
|
|
compose-foundation = { module = "androidx.compose.foundation:foundation" }
|
|
compose-runtime = { module = "androidx.compose.runtime:runtime" }
|
|
compose-material3 = { module = "androidx.compose.material3:material3" }
|
|
compose-material-icons-extended = { module = "androidx.compose.material:material-icons-extended" }
|
|
|
|
# Material (Views / common)
|
|
google-material = { module = "com.google.android.material:material", version.ref = "material" }
|
|
|
|
# Navigation
|
|
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigation" }
|
|
androidx-navigation-common = { module = "androidx.navigation:navigation-common-ktx", version.ref = "navigation" }
|
|
|
|
# DI (Hilt)
|
|
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
|
|
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
|
|
androidx-hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hiltNavCompose" }
|
|
|
|
# Paging
|
|
androidx-paging-runtime = { module = "androidx.paging:paging-runtime", version.ref = "paging" }
|
|
androidx-paging-compose = { module = "androidx.paging:paging-compose", version.ref = "paging" }
|
|
|
|
# Network
|
|
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
|
|
okhttp-logging = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" }
|
|
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
|
|
retrofit-moshi = { module = "com.squareup.retrofit2:converter-moshi", version.ref = "retrofit" }
|
|
retrofit-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "retrofit" }
|
|
moshi = { module = "com.squareup.moshi:moshi", version.ref = "moshi" }
|
|
moshi-kotlin = { module = "com.squareup.moshi:moshi-kotlin", version.ref = "moshi" }
|
|
jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoup" }
|
|
|
|
# Room
|
|
room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
|
|
room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" }
|
|
room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
|
|
|
|
# Images
|
|
coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
|
|
|
|
# Debug
|
|
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
|
|
compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" }
|
|
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" }
|
|
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
|
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } |