87 lines
4.0 KiB
TOML
87 lines
4.0 KiB
TOML
[versions]
|
|
compileSdk = "35"
|
|
minSdk = "26"
|
|
targetSdk = "35"
|
|
versionName = "1.0"
|
|
versionCode = "1"
|
|
|
|
agp = "8.12.0"
|
|
kotlin = "1.9.24"
|
|
jvmTarget = "17"
|
|
|
|
coroutines = "1.8.1"
|
|
serialization = "1.6.3"
|
|
kotlinxImmutable = "0.3.8"
|
|
|
|
kotlinCompilerExtension = "1.5.14"
|
|
|
|
coreKtx = "1.10.1"
|
|
appcompat = "1.6.1"
|
|
material = "1.10.0"
|
|
activity = "1.8.0"
|
|
constraintlayout = "2.1.4"
|
|
compose-bom = "2024.10.00"
|
|
hilt-nav-compose = "1.2.0"
|
|
navigation = "2.8.5"
|
|
paging = "3.3.2"
|
|
lifecycle = "2.7.0"
|
|
|
|
hilt = "2.50"
|
|
retrofit = "2.11.0"
|
|
okhttp = "4.12.0"
|
|
moshi = "1.15.1"
|
|
jsoup = "1.17.2"
|
|
room = "2.6.1"
|
|
junit = "4.13.2"
|
|
junitVersion = "1.3.0"
|
|
espressoCore = "3.7.0"
|
|
materialVersion = "1.13.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
|
|
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 = "activity" }
|
|
androidx-paging-runtime = { group = "androidx.paging", name = "paging-runtime-ktx", version.ref = "paging" }
|
|
# Compose (BOM)
|
|
compose-bom = { module = "androidx.compose:compose-bom", version.ref = "compose-bom" }
|
|
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" }
|
|
# Navigation / Hilt
|
|
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigation" }
|
|
androidx-navigation-common = { module = "androidx.navigation:navigation-common-ktx", version.ref = "navigation" }
|
|
hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hilt-nav-compose" }
|
|
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
|
|
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
|
|
# 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" }
|
|
# Debug
|
|
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
|
|
compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" }
|
|
material = { group = "com.google.android.material", name = "material", version.ref = "materialVersion" }
|
|
|
|
[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" } |