SQLDelight database class generating problem
Recently, I have been struggling with generating a database class for the SQLDelight schema and couldn't find a relevant answer to my problem. So this post might help someone who faces similar errors.
First, I had this nasty error while I tried to generate a class for the database schema with a Gradle task(generateSqlDelightInterface):
Unable to find method ''void kotlin.jvm.internal.FunctionReferenceImpl.<init>(int, java.lang.Class, java.lang.String, java.lang.String, int)'' 'void kotlin.jvm.internal.FunctionReferenceImpl.<init>(int, java.lang.Class, java.lang.String, java.lang.String, int)'
The solution was simple - upgrade Gradle Version to 6.8-milestone-2 in Project Structure/Project. It seems there was some bug in the older version.
Second, I had a problem with generating the actual class for the schema. This mechanism is pretty cranky to the directories configuration. You have to be watchful and put the schema file to the directory corresponding to the package which you specified in the build gradle file.
Here is my working example:
build.gradle.file:
"packageName" - must be with the same structure as the location of the schema file inside the sqldelight folder.
"sourceFolders" - list of directories inside of commonMain to scan for a schema file. Note that here you specify only a root folder. Inside that root folder, the location of a schema must match the specified "packageName" structure.
Comments
Post a Comment