All checks were successful
gitea-openium/consentium.droid/pipeline/head This commit looks good
168 lines
5.9 KiB
TOML
168 lines
5.9 KiB
TOML
[versions]
|
|
|
|
# Android
|
|
compileSdk = "34"
|
|
targetSdk = "34"
|
|
minSdk = "24"
|
|
|
|
# AndroidX
|
|
coreKtx = "1.13.1"
|
|
activityCompose = "1.9.3"
|
|
appcompat = "1.7.0"
|
|
|
|
# Lifecycle
|
|
lifecycle = "2.8.7"
|
|
|
|
# Hilt
|
|
hilt = "2.51.1"
|
|
hiltNavigation = "1.2.0"
|
|
|
|
# Compose
|
|
composeBom = "2024.11.00"
|
|
|
|
# Timber
|
|
timber = "5.0.1"
|
|
|
|
# Serialization
|
|
serialization = "2.0.0"
|
|
jsonSerialization = "1.7.1"
|
|
|
|
# Retrofit
|
|
retrofit = "2.11.0"
|
|
loggingInterceptor = "4.12.0"
|
|
|
|
# Okhttp
|
|
okhttpBom = "4.12.0"
|
|
|
|
# Test
|
|
junit = "4.13.2"
|
|
espressoCore = "3.6.1"
|
|
junitExtVersion = "1.2.1"
|
|
|
|
# Preferences DataStore
|
|
preferencesDataStore = "1.1.1"
|
|
|
|
# Plugins
|
|
agp = "8.8.1"
|
|
kotlin = "2.0.0"
|
|
ksp = "2.0.0-1.0.24"
|
|
junitVersion = "1.2.1"
|
|
googleServicesPlugin = "4.4.2"
|
|
|
|
# Matomo
|
|
matomo = "4.3"
|
|
|
|
# Compose navigation
|
|
navigationCompose = "2.8.2"
|
|
|
|
# Crashlytics
|
|
firebaseCrashlyticsPlugin = "3.0.2"
|
|
firebaseCrashlyticsKtx = "19.2.0"
|
|
|
|
# Clarity
|
|
clarityVersion = "1.3.2"
|
|
|
|
# Coil
|
|
coil = "3.0.4"
|
|
|
|
# GA4
|
|
ga4 = "22.1.2"
|
|
runtimeAndroid = "1.7.6"
|
|
foundationAndroid = "1.7.6"
|
|
foundationLayoutAndroid = "1.7.5"
|
|
uiAndroid = "1.7.5"
|
|
material3Android = "1.3.1"
|
|
|
|
# Publish
|
|
publish = "1.2"
|
|
|
|
[libraries]
|
|
|
|
# AndroidX
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
|
|
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
androidx-runtime-android = { group = "androidx.compose.runtime", name = "runtime-android", version.ref = "runtimeAndroid" }
|
|
androidx-foundation-android = { group = "androidx.compose.foundation", name = "foundation-android", version.ref = "foundationAndroid" }
|
|
androidx-foundation-layout-android = { group = "androidx.compose.foundation", name = "foundation-layout-android", version.ref = "foundationLayoutAndroid" }
|
|
androidx-ui-android = { group = "androidx.compose.ui", name = "ui-android", version.ref = "uiAndroid" }
|
|
|
|
# Lifecycle
|
|
androidx-lifecycle-runtime = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
|
|
androidx-lifecycle-viewmodel = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycle" }
|
|
|
|
# Hilt
|
|
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
|
|
hilt-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hilt" }
|
|
hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hiltNavigation" }
|
|
|
|
# Timber
|
|
timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" }
|
|
|
|
# Compose
|
|
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
|
|
compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
|
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
|
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
|
|
# Material
|
|
compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
|
|
# Kotlin serizalization
|
|
kotlin-serialization = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "jsonSerialization" }
|
|
|
|
# Compose navigation
|
|
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigationCompose" }
|
|
|
|
# Preferences DataStore
|
|
preferencesDataStore = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "preferencesDataStore" }
|
|
|
|
# Retrofit
|
|
retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
|
|
retrofitConverter = { group = "com.squareup.retrofit2", name = "converter-kotlinx-serialization", version.ref = "retrofit" }
|
|
logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "loggingInterceptor" }
|
|
|
|
# Okhttp
|
|
okhttp-bom = { module = "com.squareup.okhttp3:okhttp-bom", version.ref = "okhttpBom" }
|
|
okhttp = { module = "com.squareup.okhttp3:okhttp" }
|
|
|
|
# Test
|
|
test-junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
test-androidx-junit = { group = "androidx.test.ext", name = "junit-ktx", version.ref = "junitExtVersion" }
|
|
test-espresso = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
|
|
# Matomo
|
|
matomo = { module = "com.github.matomo-org:matomo-sdk-android", version.ref = "matomo" }
|
|
|
|
# Clarity
|
|
clarity = { group = "com.microsoft.clarity", name = "clarity", version.ref = "clarityVersion" }
|
|
|
|
# GA4
|
|
ga4 = { module = "com.google.firebase:firebase-analytics", version.ref = "ga4" }
|
|
|
|
# Coil
|
|
coil = { module = "io.coil-kt.coil3:coil-compose", version.ref = "coil" }
|
|
coil-network = { module = "io.coil-kt.coil3:coil-network-okhttp", version.ref = "coil" }
|
|
|
|
# Rich text formating
|
|
rich-text = { module = "com.mohamedrejeb.richeditor:richeditor-compose", version = "1.0.0-rc05-k2" }
|
|
|
|
# Publish
|
|
openium-publish = { group = "fr.openium", name = "publish-plugin", version.ref = "publish" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|
|
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
|
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "serialization" }
|
|
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebaseCrashlyticsPlugin" }
|
|
google-services = { id = "com.google.gms.google-services", version.ref = "googleServicesPlugin" }
|
|
|
|
[bundles]
|
|
androidx = ["androidx-core-ktx", "androidx-activity-compose"]
|
|
compose = ["compose-ui", "compose-ui-graphics", "compose-ui-tooling", "compose-material3"] |