17 lines
340 B
Text
17 lines
340 B
Text
plugins {
|
|
id("librechat.kmp.library")
|
|
id("librechat.kotlin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.garfiec.librechat.core.model"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(project(":core:common"))
|
|
implementation(libs.kotlinx.serialization.json)
|
|
}
|
|
}
|
|
}
|