wuseal
08/06/2019, 3:26 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?mkobit
08/06/2019, 3:40 PMval kotlin_version: String by project
is what you are supposed to usemkobit
08/06/2019, 3:45 PMwuseal
08/06/2019, 3:45 PMby properties
doesn’t work? any reason or reference material?wuseal
08/06/2019, 3:46 PMmkobit
08/06/2019, 3:56 PMby properties
to behave similarlyjdiaz
08/06/2019, 9:09 PMjdiaz
08/07/2019, 11:48 AMwuseal
08/08/2019, 2:30 AM