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 corres...