Last active
July 2, 2023 01:31
-
-
Save auranga/2272451ced63c45a4fd8e46255dde19e to your computer and use it in GitHub Desktop.
Gradle share dependencies between modules
This file contains hidden or 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
| # libs.versions.toml | |
| [versions] | |
| ktx = "1.10.1" | |
| [libraries] | |
| androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "ktx" } | |
| # build.gradle | |
| # implementation (libs.androidx.core.ktx) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment