wuseal
08/06/2019, 3:23 PMbuild.gradle.kts from gradle.properties file, I can get the value by val kotlin_version: String = property("kotlin_version").toString() but can’t by val kotlin_version: String by properties. WHY?😂 , Anybody could tell me?molikuner
08/06/2019, 4:25 PMval kotlin_version: String by project? At least that worked the last time I used sth like that.Big Chungus
08/06/2019, 9:20 PMsystemProp.kotlinVersion=xxxx and fetch it as `val kotlinVersion:String by System.properties()wuseal
08/07/2019, 3:22 AM