mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
plugins {
|
|
id("multiplatform-compose-setup")
|
|
id("android-setup")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":common:data-models"))
|
|
implementation(project(":common:database"))
|
|
implementation(project(":fuzzywuzzy:app"))
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.1.1")
|
|
implementation(Ktor.clientCore)
|
|
implementation(Ktor.clientCio)
|
|
implementation(Ktor.clientSerialization)
|
|
implementation(Ktor.clientLogging)
|
|
implementation(Ktor.clientJson)
|
|
implementation(Ktor.auth)
|
|
// koin
|
|
api(Koin.core)
|
|
api(Koin.test)
|
|
|
|
api(Extras.kermit)
|
|
api(Extras.youtubeDownloader)
|
|
api(Extras.mp3agic)
|
|
}
|
|
}
|
|
androidMain {
|
|
dependencies{
|
|
implementation(Ktor.clientAndroid)
|
|
implementation(Extras.Android.fetch)
|
|
implementation(Koin.android)
|
|
api(files("$rootDir/libs/mobile-ffmpeg.aar"))
|
|
}
|
|
}
|
|
desktopMain {
|
|
dependencies{
|
|
implementation("com.github.kokorin.jaffree:jaffree:0.9.10")
|
|
implementation(Ktor.clientApache)
|
|
implementation(Ktor.slf4j)
|
|
}
|
|
}
|
|
}
|
|
}
|