Last active
September 26, 2024 14:35
-
-
Save krzdabrowski/5c1790c3562bd350c047dc7b9fac5548 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] | |
hilt = "2.52" | |
kotlin = "2.0.20" | |
kotlin-coroutines = "1.8.1" | |
retrofit = "2.11.0" | |
room = "2.6.1" | |
(...) | |
[plugins] | |
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" } | |
kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | |
(...) | |
[libraries] | |
hilt = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" } | |
kotlin-coroutines = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "kotlin-coroutines" } | |
retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" } | |
room = { group = "androidx.room", name = "room-runtime", version.ref = "room" } | |
(...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment