mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:36:57 +00:00
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
/*
|
|
* Copyright 2024 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-wallet/blob/master/LICENSE.md
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.kmp.library.convention)
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.mifospay.core.datastore"
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
isReturnDefaultValues = true
|
|
}
|
|
}
|
|
}
|
|
|
|
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.core)
|
|
implementation(projects.core.model)
|
|
implementation(projects.core.common)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(libs.multiplatform.settings.test)
|
|
}
|
|
|
|
desktopMain.dependencies {
|
|
implementation(libs.kotlinx.coroutines.swing)
|
|
}
|
|
}
|
|
} |