Is this now the recommended way to set dependency version numbers? gradle/libs.versions.toml? #644
-
It looks like to me that the version numbers for dependencies are set in this file. Is this now the recommended approach? Is this to guarantee that all of the modules are using the same versions if they are using the same dependency? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, is a new approach to handle our dependencies. This is called Versions Catalogs, we use this "toml" file to set all dependencies, plugins and an extra feature called bundles, that allow us to inject a group of depencies at once instead inject one by one in the module that need them. |
Beta Was this translation helpful? Give feedback.
-
@nathanmeade yes, you can check the official Android docs:
Also, don't forget to close this discussion and mark it as resolved if it's ok for you 😉 |
Beta Was this translation helpful? Give feedback.
@nathanmeade yes, you can check the official Android docs:
Also, don't forget to close this discussion and mark it as resolved if it's …