new: replace in-memory record repository with JSON-backed implementation
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
plugins {
|
||||
id("gwenedeg.kmp.library")
|
||||
alias(libs.plugins.kotlinSerialization)
|
||||
}
|
||||
|
||||
kotlin {
|
||||
@@ -11,6 +12,17 @@ kotlin {
|
||||
commonMain.dependencies {
|
||||
// Core modules
|
||||
implementation(projects.core.model)
|
||||
implementation(projects.core.coroutines)
|
||||
implementation(projects.core.logging)
|
||||
|
||||
// Reads the un-versioned records.json bundled with the app resources
|
||||
implementation(projects.data.resources)
|
||||
|
||||
// JSON parsing
|
||||
implementation(libs.kotlinx.serializationJson)
|
||||
}
|
||||
commonTest.dependencies {
|
||||
implementation(libs.kotlinx.coroutinesTest)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user