mirror of
https://github.com/SimpleMobileTools/Simple-Launcher.git
synced 2025-02-16 19:40:41 +01:00
This is done to allow configuring widgets on SDK 34. It seems that this is not yet fully supported, since SDK 34 is in beta. System blocks starting widget configuration when target SDK 34, probably due to https://developer.android.com/about/versions/14/behavior-changes-14#background-activity-restrictions
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 = "c5a32fb1f3"
|
|
#Gradle
|
|
gradlePlugins-agp = "8.1.0"
|
|
#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 = "8"
|
|
app-version-versionName = "5.0.6"
|
|
[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" }
|