99 lines
4.0 KiB
TOML
99 lines
4.0 KiB
TOML
[versions]
|
|
#jetbrains
|
|
kotlin = "1.9.10"
|
|
#KSP
|
|
ksp = "1.9.10-1.0.13"
|
|
#Androidx
|
|
androidx-customView = "1.2.0-alpha02"
|
|
androidx-customViewPooling = "1.0.0"
|
|
androidx-lifecycle = "2.7.0-alpha02"
|
|
#Compose
|
|
composeActivity = "1.8.0"
|
|
compose = "1.6.0-alpha07"
|
|
composeCompiler = "1.5.3"
|
|
composeMaterial3 = "1.2.0-alpha09"
|
|
#AutoFitTextView
|
|
autofittextview = "0.2.1"
|
|
#exp4j
|
|
exp4j = "0.4.8"
|
|
#Room
|
|
room = "2.5.2"
|
|
#Simple tools
|
|
simple-commons = "6a7777d740"
|
|
#Gradle
|
|
gradlePlugins-agp = "8.1.2"
|
|
#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.calculator"
|
|
app-version-versionCode = "61"
|
|
app-version-versionName = "5.12.0"
|
|
|
|
[libraries]
|
|
#Android X
|
|
androidx-customView = { module = "androidx.customview:customview", version.ref = "androidx-customView" }
|
|
androidx-customViewPooling = { module = "androidx.customview:customview-poolingcontainer", version.ref = "androidx-customViewPooling" }
|
|
#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-viewModel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" }
|
|
androidx-lifecycle-compose = { module = "androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidx-lifecycle" }
|
|
#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-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "composeCompiler" }
|
|
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
|
|
compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "composeMaterial3" }
|
|
compose-material2 = { module = "androidx.compose.material:material", version.ref = "compose" }
|
|
compose-material-icons = { module = "androidx.compose.material:material-icons-extended", version.ref = "compose" }
|
|
compose-animation = { module = "androidx.compose.animation:animation", version.ref = "compose" }
|
|
compose-activity = { module = "androidx.activity:activity-compose", version.ref = "composeActivity" }
|
|
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
|
|
compose-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "compose" }
|
|
compose-uiTooling-debug = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
|
|
compose-uiTooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
|
|
#UI
|
|
auto-fit-text-view = { module = "me.grantland:autofittextview", version.ref = "autofittextview" }
|
|
#Simple Mobile Tools
|
|
simple-tools-commons = { module = "com.github.SimpleMobileTools:Simple-Commons", version.ref = "simple-commons" }
|
|
#Exp4j
|
|
exp4j = { module = "net.objecthunter:exp4j", version.ref = "exp4j" }
|
|
[bundles]
|
|
compose = [
|
|
"compose-activity",
|
|
"compose-animation",
|
|
"compose-compiler",
|
|
"compose-foundation",
|
|
"compose-material-icons",
|
|
"compose-material3",
|
|
"compose-runtime",
|
|
"compose-ui",
|
|
"compose-uiTooling-preview",
|
|
]
|
|
compose-preview = [
|
|
"androidx-customView",
|
|
"androidx-customViewPooling",
|
|
"compose-uiTooling-debug",
|
|
]
|
|
room = [
|
|
"androidx-room-ktx",
|
|
"androidx-room-runtime",
|
|
]
|
|
lifecycle = [
|
|
"androidx-lifecycle-compose",
|
|
"androidx-lifecycle-runtime",
|
|
"androidx-lifecycle-viewModel",
|
|
"androidx-lifecycle-viewModel-compose",
|
|
]
|
|
[plugins]
|
|
android = { id = "com.android.application", version.ref = "gradlePlugins-agp" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
|