ce79a8fc4d
- Voyager is a navigation library that allows us to navigate between Composable screens. - I created basic LicenseScreen and HomeScreen.
22 lines
976 B
TOML
22 lines
976 B
TOML
[versions]
|
|
agp = "8.2.0"
|
|
android-compileSdk = "34"
|
|
android-minSdk = "24"
|
|
android-targetSdk = "34"
|
|
androidx-activityCompose = "1.8.2"
|
|
compose = "1.6.2"
|
|
compose-plugin = "1.6.0"
|
|
kotlin = "1.9.22"
|
|
voyager = "1.0.0"
|
|
|
|
[libraries]
|
|
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
|
|
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
|
|
compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
|
|
voyager-navigator = { module = "cafe.adriel.voyager:voyager-navigator", version.ref = "voyager" }
|
|
|
|
[plugins]
|
|
androidApplication = { id = "com.android.application", version.ref = "agp" }
|
|
androidLibrary = { id = "com.android.library", version.ref = "agp" }
|
|
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
|
|
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|