22 lines
489 B
Text
22 lines
489 B
Text
plugins {
|
|
id("librechat.kmp.feature")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.garfiec.librechat.feature.auth"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(project(":core:network"))
|
|
}
|
|
androidMain.dependencies {
|
|
implementation(libs.browser)
|
|
}
|
|
named("androidUnitTest").dependencies {
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.koin.test)
|
|
}
|
|
}
|
|
}
|