John Aoussou
09/04/2022, 5:05 AMbuild.gradle.kts
file looks like this
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
'com.squareup.sqldelight:gradle-plugin:1.5.3'
and
'com.squareup.sqldelight'
?