Alright it seems like the best solution is to acce...
# gradle
b
Alright it seems like the best solution is to access it via
System.getProperty
like: gradle.properties
Copy code
systemProp.kotlin_version=1.4.20
build.gradle.kts
Copy code
plugins {
    id("com.android.application") version "4.0.1"
    kotlin("android") version System.getProperty("kotlin_version")
}
j
are you using buildSrc?
b
buildSrc?
j
I guess that is no. Maybe you can wait until 6.9
b
That looks promising
Is it only available in Alpha version of gradle?
j
Yeah, 6.9 nightly
b
great I'll migrate to using that once it drops in normal channel
thanks
I wrote a simple site a while back https://versions.dev/ that generates out script files and I've been having trouble having it work with the new plugin system