Last active
February 4, 2025 16:50
-
-
Save anitaa1990/fab22cdf9ffba5ec045512f03a37f725 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[versions] | |
# <dependency_or_plugin_name> = "<dependency_or_plugin_version>" | |
roomVersion = "2.6.1" | |
hiltVersion = "2.49" | |
ksp = "1.9.0-1.0.13" | |
[libraries] | |
# <dependency_name> = { group = "<dependency_group>", name = "<dependency_name>", version.ref = "<version_reference>" } | |
# Here, you can consider the colon as delimeter and get the follwoing, | |
# group of dependency: androidx.room | |
# name of dependency: room-runtime | |
# version: the version variable you defined in the previous step | |
## Hilt | |
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hiltVersion" } | |
hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hiltVersion" } | |
## Room | |
room-android = { group = "androidx.room", name = "room-runtime", version.ref = "roomVersion" } | |
[plugins] | |
# <plugin_name> = { id = "<plugin_id>", version.ref = "plugin_version" } | |
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } | |
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment