38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[versions]
|
|
#jetbrains
|
|
kotlin = "1.9.0"
|
|
#KSP
|
|
ksp = "1.9.0-1.0.12"
|
|
#Room
|
|
room = "2.6.0-alpha02"
|
|
#Simple tools
|
|
simple-commons = "c573613da9"
|
|
#Gradle
|
|
gradlePlugins-agp = "8.1.1"
|
|
#build
|
|
app-build-compileSDKVersion = "34"
|
|
app-build-targetSDK = "33"
|
|
app-build-minimumSDK = "26"
|
|
app-build-javaVersion = "VERSION_17"
|
|
app-build-kotlinJVMTarget = "17"
|
|
#versioning
|
|
app-version-appId = "com.simplemobiletools.launcher"
|
|
app-version-versionCode = "10"
|
|
app-version-versionName = "5.1.1"
|
|
[libraries]
|
|
#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" }
|
|
[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" }
|