76 lines
2.8 KiB
TOML
76 lines
2.8 KiB
TOML
[versions]
|
|
#jetbrains
|
|
kotlin = "1.9.0"
|
|
#KSP
|
|
ksp = "1.9.0-1.0.12"
|
|
#AndroidX
|
|
androidx-constraintlayout = "2.1.4"
|
|
androidx-lifecycle = "2.6.1"
|
|
androidx-preference = "1.2.0"
|
|
androidx-work = "2.8.1"
|
|
#AutoFitTextView
|
|
autofittextview = "0.2.1"
|
|
#Eventbus
|
|
eventbus = "3.3.1"
|
|
#KotlinX
|
|
kotlinx-coroutines = "1.7.3"
|
|
#NumberPicker
|
|
numberpicker = "2.4.13"
|
|
#Room
|
|
room = "2.6.0-beta01"
|
|
#Simple tools
|
|
simple-commons = "c573613da9"
|
|
#Stetho
|
|
stetho = "1.6.0"
|
|
#Gradle
|
|
gradlePlugins-agp = "8.1.1"
|
|
#build
|
|
app-build-compileSDKVersion = "34"
|
|
app-build-targetSDK = "34"
|
|
app-build-minimumSDK = "23"
|
|
app-build-javaVersion = "VERSION_17"
|
|
app-build-kotlinJVMTarget = "17"
|
|
#versioning
|
|
app-version-appId = "com.simplemobiletools.clock"
|
|
app-version-versionCode = "42"
|
|
app-version-versionName = "5.11.2"
|
|
[libraries]
|
|
#AndroidX
|
|
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintlayout" }
|
|
androidx-preference = { module = "androidx.preference:preference-ktx", version.ref = "androidx-preference" }
|
|
androidx-work = { module = "androidx.work:work-runtime-ktx", version.ref = "androidx-work" }
|
|
#Android X lifecycle
|
|
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" }
|
|
androidx-lifecycle-viewModel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "androidx-lifecycle" }
|
|
androidx-lifecycle-process = { module = "androidx.lifecycle:lifecycle-process", version.ref = "androidx-lifecycle" }
|
|
#AutoFitTextView
|
|
autofittextview = { module = "me.grantland:autofittextview", version.ref = "autofittextview" }
|
|
#EventBus
|
|
eventbus = { module = "org.greenrobot:eventbus", version.ref = "eventbus" }
|
|
#KotlinX
|
|
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
|
|
#NumberPicker
|
|
numberpicker = { module = "io.github.ShawnLin013:number-picker", version.ref = "numberpicker" }
|
|
#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" }
|
|
#Simple Mobile Tools
|
|
simple-tools-commons = { module = "com.github.SimpleMobileTools:Simple-Commons", version.ref = "simple-commons" }
|
|
#Stetho
|
|
stetho = { module = "com.facebook.stetho:stetho", version.ref = "stetho" }
|
|
[bundles]
|
|
room = [
|
|
"androidx-room-ktx",
|
|
"androidx-room-runtime",
|
|
]
|
|
lifecycle = [
|
|
"androidx-lifecycle-runtime",
|
|
"androidx-lifecycle-viewModel",
|
|
"androidx-lifecycle-process",
|
|
]
|
|
[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" }
|