mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:07:02 +00:00
47 lines
1.3 KiB
Plaintext
47 lines
1.3 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-wallet/blob/master/LICENSE.md
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.kmp.library.convention)
|
|
alias(libs.plugins.kotlin.parcelize)
|
|
}
|
|
|
|
android {
|
|
namespace = "template.core.base.common"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
api(libs.kermit.logging)
|
|
api(libs.squareup.okio)
|
|
api(libs.jb.kotlin.stdlib)
|
|
api(libs.kotlinx.datetime)
|
|
}
|
|
|
|
androidMain.dependencies {
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
}
|
|
commonTest.dependencies {
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
}
|
|
iosMain.dependencies {
|
|
api(libs.kermit.simple)
|
|
}
|
|
desktopMain.dependencies {
|
|
implementation(libs.kotlinx.coroutines.swing)
|
|
implementation(libs.kotlin.reflect)
|
|
}
|
|
jsMain.dependencies {
|
|
api(libs.jb.kotlin.stdlib.js)
|
|
api(libs.jb.kotlin.dom)
|
|
}
|
|
}
|
|
} |