mirror of
https://github.com/FossifyOrg/Notes.git
synced 2026-02-07 22:22:31 -05:00
50 lines
1.8 KiB
TOML
50 lines
1.8 KiB
TOML
[versions]
|
|
#jetbrains
|
|
kotlin = "2.3.0"
|
|
#KSP
|
|
kotlinxSerializationJson = "1.10.0"
|
|
ksp = "2.3.5"
|
|
#Detekt
|
|
detekt = "1.23.8"
|
|
detektCompose = "0.4.28"
|
|
#AndroidX
|
|
androidx-constraintlayout = "2.2.1"
|
|
androidx-documentfile = "1.1.0"
|
|
#Room
|
|
room = "2.8.4"
|
|
#Fossify
|
|
commons = "6.1.2"
|
|
#Gradle
|
|
gradlePlugins-agp = "8.11.1"
|
|
#build
|
|
app-build-compileSDKVersion = "36"
|
|
app-build-targetSDK = "36"
|
|
app-build-minimumSDK = "26"
|
|
app-build-javaVersion = "VERSION_17"
|
|
app-build-kotlinJVMTarget = "17"
|
|
[libraries]
|
|
#AndroidX
|
|
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintlayout" }
|
|
androidx-documentfile = { module = "androidx.documentfile:documentfile", version.ref = "androidx-documentfile" }
|
|
#Room
|
|
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
|
|
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" }
|
|
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
|
|
#Compose
|
|
compose-detekt = { module = "io.nlopez.compose.rules:detekt", version.ref = "detektCompose" }
|
|
#Fossify
|
|
fossify-commons = { module = "org.fossify:commons", version.ref = "commons" }
|
|
#Kotlin
|
|
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
|
|
[bundles]
|
|
room = [
|
|
"androidx-room-ktx",
|
|
"androidx-room-runtime",
|
|
]
|
|
[plugins]
|
|
android = { id = "com.android.application", version.ref = "gradlePlugins-agp" }
|
|
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
|
detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|