Cicero
12/03/2020, 12:06 AMrocketraman
12/03/2020, 3:50 AMbuild.gradle.kts
* The plugins.id block goes into your shared library build.gradle.kts
.
* In the sqldelight { ... }
block, you could also try adding sourceFolders = listOf("sqldelight")
(might be the default, but I've got it in my build)
* In your shared lib kotlin.sourceSets you need to add the various sqldelight deps. In commonMain
add the runtime
artifact, in androidMain
add android-driver
, and iosMain
add native-driver
.Cicero
12/03/2020, 9:19 AMCicero
12/03/2020, 9:55 AM