Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Last active November 11, 2022 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorescodro/a2962c886e2056940730b5f8fbd5e635 to your computer and use it in GitHub Desktop.
Save igorescodro/a2962c886e2056940730b5f8fbd5e635 to your computer and use it in GitHub Desktop.
[versions]
# Define the dependency versions
kotlin = "1.7.10"
compose = "1.2.1"
[libraries]
# Define the libraries
compose_ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose_material = { module = "androidx.compose.material:material", version.ref = "compose" }
compose_tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
compose_icons = { module = "androidx.compose.material:material-icons-extended", version.ref = "compose" }
[bundles]
# Define bundles/groups of libraries
compose = ["compose.ui", "compose.material", "compose.tooling", "compose.icons"]
[plugins]
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
@micer
Copy link

micer commented Oct 21, 2022

On the last line there should be version.ref = "kotlin" instead of version = "kotlin".

@igorescodro
Copy link
Author

On the last line there should be version.ref = "kotlin" instead of version = "kotlin".

Thanks a lot! Updated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment