Nikky
07/06/2023, 3:39 PMIllegalStateException: The driver used with SQLDelight is asynchronous, so SQLDelight should be configured for
asynchronous usage:
sqldelight {
databases {
MyDatabase {
generateAsync = true
}
}
}
even though it is configured for it..
sqldelight {
databases {
create("Database") {
packageName.set("database")
generateAsync.set(true)
}
}
}
any idea what might be missing ?