Initialize Meatbag SDUI platform

This commit is contained in:
2026-06-30 15:12:58 -06:00
commit 8b4cb8eace
28 changed files with 3058 additions and 0 deletions

9
build.gradle.kts Normal file
View File

@@ -0,0 +1,9 @@
plugins {
// Note: Use matching versions of Kotlin and Compose Multiplatform
kotlin("multiplatform") version "1.9.23" apply false
kotlin("jvm") version "1.9.23" apply false
kotlin("plugin.serialization") version "1.9.23" apply false
id("org.jetbrains.compose") version "1.6.11" apply false
id("io.ktor.plugin") version "2.3.11" apply false
id("com.android.library") version "8.2.2" apply false
}