mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
17 lines
387 B
Plaintext
17 lines
387 B
Plaintext
plugins {
|
|
id("multiplatform-compose-setup")
|
|
id("android-setup")
|
|
id("kotlin-parcelize")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api("dev.icerock.moko:parcelize:0.6.0")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
|
|
}
|
|
}
|
|
}
|
|
} |