mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
plugins {
|
|
id("multiplatform-setup")
|
|
id("multiplatform-setup-test")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":common:data-models"))
|
|
implementation(project(":common:database"))
|
|
api("org.jetbrains.kotlinx:atomicfu:0.16.2")
|
|
api(MultiPlatformSettings.dep)
|
|
implementation(MVIKotlin.rx)
|
|
}
|
|
}
|
|
androidMain {
|
|
dependencies {
|
|
implementation(Extras.mp3agic)
|
|
implementation(Extras.Android.countly)
|
|
implementation(project(":ffmpeg:android-ffmpeg"))
|
|
}
|
|
}
|
|
desktopMain {
|
|
dependencies {
|
|
implementation(Extras.mp3agic)
|
|
implementation(Extras.Desktop.countly)
|
|
implementation("com.github.kokorin.jaffree:jaffree:2021.08.16")
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
implementation(npm("browser-id3-writer", "4.4.0"))
|
|
implementation(npm("file-saver", "2.0.4"))
|
|
}
|
|
}
|
|
}
|
|
} |