Skip to content

Instantly share code, notes, and snippets.

@wildiney
Last active December 8, 2024 19:42
Show Gist options
  • Save wildiney/3b4b0e3e753497449bf9a03596f565bd to your computer and use it in GitHub Desktop.
Save wildiney/3b4b0e3e753497449bf9a03596f565bd to your computer and use it in GitHub Desktop.
Configs for Navigation
plugins{
alias(libs.plugins.jetbrainsKotlinSerialization)
}
dependencies{
implementation(libs.androidx.navigation.compose)
implementation(libs.kotlinx.serialization.json)
}
[version]
navigationCompose = "2.8.2"
kotlinSerialization = "1.7.3" # Kotlin 2
[libraries]
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref="navigationCompose" }
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinSerialization" }
[plugin]
jetBrainsKotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment