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