mobile-wallet/feature/make-transfer/build.gradle.kts
Biplab Dutta 9b2e013c55
fix(feature): fix DialogState serialization error (#1899)
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
2025-08-29 13:19:21 +05:30

30 lines
823 B
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.cmp.feature.convention)
alias(libs.plugins.kotlin.serialization)
}
android {
namespace = "org.mifospay.feature.make.transfer"
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(compose.ui)
implementation(compose.foundation)
implementation(compose.material3)
implementation(compose.components.resources)
implementation(compose.components.uiToolingPreview)
}
}
}