Hello, I'm trying to create an SQLDelight DB in a ...
# squarelibraries
j
Hello, I'm trying to create an SQLDelight DB in a Compose Multiplatform (Android + Desktop) project. My outermost
build.gradle.kts
file looks like this
Copy code
group "com.example"
version "1.0-SNAPSHOT"

allprojects {
    repositories {
        google()
        mavenCentral()
        maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
    }
}

plugins {
    kotlin("multiplatform") apply false
    kotlin("android") apply false
    id("com.android.application") apply false
    id("com.android.library") apply false
    id("org.jetbrains.compose") apply false
}
I'm trying to follow the info here https://cashapp.github.io/sqldelight/multiplatform_sqlite/ but I'm unable to make the parallel. Where am I supposed to insert
Copy code
'com.squareup.sqldelight:gradle-plugin:1.5.3'
and
Copy code
'com.squareup.sqldelight'
?