I’m not dooing anything out of ordinary, I just wa...
# squarelibraries
c
I’m not dooing anything out of ordinary, I just wanted to play in a fresh project with SQLDelight and it is simply not working Root gradle:
Copy code
buildscript {
    repositories {
        google()
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:7.0.0-alpha02")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$1.4.20")
        classpath("org.jetbrains.kotlin:kotlin-serialization:$1.4.20")
        classpath("com.squareup.sqldelight:gradle-plugin:$1.4.2")
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter()
        maven(url = "<https://dl.bintray.com/ekito/koin>")
        maven(url = "<https://kotlin.bintray.com/kotlin-js-wrappers/>")
        maven(url = "<https://jitpack.io>")
    }
}
Commons gradle:
Copy code
plugins {
    kotlin("multiplatform")
    id("kotlinx-serialization")
    id("com.android.library")
    id("com.squareup.sqldelight")
}