It looks like settings.gradle.kts has no `project....
# gradle
z
It looks like settings.gradle.kts has no
project.properties
there is
rootProject
but it has no
properties
field
g
Settings has
settings.properties
z
hmm.. it's still not working for me but I switched to using a kotlin file in buildSrc for version variables instead which is working nicely
g
Sorry, you need just
settings
Copy code
val foo: String by settings
But yes, versions in buildSrc are really good, also use this approach
z
Got it, thanks