mirror of
https://github.com/openMF/mifos-mobile.git
synced 2026-02-06 11:26:51 +00:00
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
/*
|
|
* Copyright 2025 Mifos Initiative
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.mifos.kmp.library)
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "template.core.base.datastore"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.multiplatform.settings)
|
|
implementation(libs.multiplatform.settings.serialization)
|
|
implementation(libs.multiplatform.settings.coroutines)
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.kotlinx.datetime)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(libs.multiplatform.settings.test)
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
implementation(libs.turbine)
|
|
}
|
|
}
|
|
}
|