versionFor() - that also searches for versions online #715
-
I am creating a gradle tasks that adds additional dependencies. Now, I want to add the version number to the version.properties file. I am looking for something like: versionForAndLookupOnlineIfDoesNotExist(). Any ideas how I could solve this? |
Beta Was this translation helpful? Give feedback.
Answered by
LouisCAD
Feb 8, 2024
Replies: 1 comment
-
Put a dependency notation with an underscore as the version, and you'll get what you're looking for. For example, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jschneider
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put a dependency notation with an underscore as the version, and you'll get what you're looking for.
For example,
versionFor(AndroidX.compose.compiler)
just works.