:wave: After updating to the latest SQLDelight ve...
# squarelibraries
n
👋 After updating to the latest SQLDelight version (2.0.0-rc01 (2023-05-30)) I can’t change the sourceFolders using the gradle configuration. I have this:
Copy code
databases {
        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>
.
✅ 1
s