Librechat-Mobile/core/model/build.gradle.kts
2026-03-09 22:00:00 -05:00

16 lines
464 B
Text

plugins {
id("librechat.android.library")
id("librechat.kotlin.serialization")
}
android {
namespace = "com.librechat.android.core.model"
}
dependencies {
implementation(project(":core:common"))
implementation(libs.kotlinx.serialization.json)
// compose-runtime is needed for @Immutable annotation on model classes,
// enabling proper skip logic in the Compose compiler.
implementation("androidx.compose.runtime:runtime:1.7.6")
}