25 lines
639 B
Text
25 lines
639 B
Text
plugins {
|
|
id("librechat.kmp.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.garfiec.librechat.feature.agents"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(project(":core:network"))
|
|
implementation(libs.coil3.compose)
|
|
implementation(libs.coil3.network.ktor)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.kermit)
|
|
}
|
|
androidMain.dependencies {
|
|
implementation(libs.koin.android)
|
|
}
|
|
getByName("androidUnitTest").dependencies {
|
|
implementation(libs.koin.test)
|
|
}
|
|
}
|
|
}
|