I can read from gradle.properties
with val myProperty by settings
, and that's nice! But what if the property name contains dots? Consider the next gradle.properties
file:
kotlin.incremental=true
kotlin.incremental.js=true
kotlin.incremental.multiplatform=true
How can I read those properties above in a settings.gradle.kts
script?