2021-08-23 19:16:20 +02:00
|
|
|
plugins {
|
|
|
|
id("multiplatform-setup")
|
|
|
|
id("multiplatform-setup-test")
|
|
|
|
kotlin("plugin.serialization")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":common:data-models"))
|
|
|
|
implementation(project(":common:database"))
|
2021-09-30 19:16:43 +02:00
|
|
|
with(deps) {
|
|
|
|
api(multiplatform.settings)
|
|
|
|
api(kotlinx.atomicfu)
|
|
|
|
implementation(mviKotlin.rx)
|
|
|
|
implementation(decompose.dep)
|
|
|
|
}
|
2021-08-23 19:16:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
androidMain {
|
|
|
|
dependencies {
|
2021-09-30 19:16:43 +02:00
|
|
|
with(deps) {
|
|
|
|
implementation(mp3agic)
|
|
|
|
implementation(countly.android)
|
|
|
|
}
|
2021-09-02 13:03:28 +02:00
|
|
|
implementation(project(":ffmpeg:android-ffmpeg"))
|
2021-08-23 19:16:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
desktopMain {
|
|
|
|
dependencies {
|
2021-09-30 19:16:43 +02:00
|
|
|
with(deps) {
|
|
|
|
implementation(mp3agic)
|
|
|
|
implementation(countly.desktop)
|
|
|
|
implementation(jaffree)
|
|
|
|
}
|
2021-08-23 19:16:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
implementation(npm("browser-id3-writer", "4.4.0"))
|
|
|
|
implementation(npm("file-saver", "2.0.4"))
|
2021-09-30 19:16:43 +02:00
|
|
|
implementation(deps.kotlin.js.wrappers.ext)
|
2021-08-23 19:16:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|