Nacho Ruiz Martin
06/05/2023, 4:45 PMdatabases {
create("X") {
... other config ...
sourceFolders.set(listOf("db"))
}
}
And the last line is throwing:
Function invocation 'sourceFolders(...)' expected
But, at the same time, sourceFolders
is a private function inside SqlDelightDatabase
sourceFolders
is supposed to be a public variable of type ListProperty<String>
.Siggi Gunnarss
06/07/2023, 12:06 PM