mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 09:37:24 +00:00
119 lines
3.7 KiB
Plaintext
119 lines
3.7 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)
|
|
alias(libs.plugins.cmp.feature.convention)
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.compose.compiler)
|
|
alias(libs.plugins.jetbrainsCompose)
|
|
alias(libs.plugins.kotlin.parcelize)
|
|
alias(libs.plugins.kotlinCocoapods)
|
|
}
|
|
|
|
kotlin {
|
|
listOf(
|
|
iosX64(),
|
|
iosArm64(),
|
|
iosSimulatorArm64()
|
|
).forEach { iosTarget ->
|
|
iosTarget.binaries.framework {
|
|
baseName = "ComposeApp"
|
|
isStatic = true
|
|
optimized = true
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(projects.core.domain)
|
|
api(projects.core.data)
|
|
api(projects.core.network)
|
|
//put your multiplatform dependencies here
|
|
implementation(compose.material3)
|
|
implementation(compose.foundation)
|
|
implementation(compose.ui)
|
|
implementation(compose.components.uiToolingPreview)
|
|
implementation(compose.components.resources)
|
|
implementation(libs.window.size)
|
|
implementation(libs.koin.core)
|
|
implementation(libs.koin.compose)
|
|
implementation(libs.koin.compose.viewmodel)
|
|
|
|
implementation(projects.feature.auth)
|
|
implementation(projects.libs.mifosPasscode)
|
|
implementation(projects.feature.home)
|
|
implementation(projects.feature.settings)
|
|
implementation(projects.feature.faq)
|
|
implementation(projects.feature.editpassword)
|
|
implementation(projects.feature.profile)
|
|
implementation(projects.feature.history)
|
|
implementation(projects.feature.payments)
|
|
implementation(projects.feature.finance)
|
|
implementation(projects.feature.accounts)
|
|
implementation(projects.feature.invoices)
|
|
implementation(projects.feature.kyc)
|
|
implementation(projects.feature.notification)
|
|
implementation(projects.feature.savedcards)
|
|
implementation(projects.feature.receipt)
|
|
implementation(projects.feature.standingInstruction)
|
|
implementation(projects.feature.requestMoney)
|
|
implementation(projects.feature.sendMoney)
|
|
implementation(projects.feature.makeTransfer)
|
|
implementation(projects.feature.qr)
|
|
implementation(projects.feature.merchants)
|
|
implementation(projects.feature.upiSetup)
|
|
}
|
|
|
|
desktopMain.dependencies {
|
|
// Desktop specific dependencies
|
|
implementation(compose.desktop.currentOs)
|
|
implementation(compose.desktop.common)
|
|
}
|
|
}
|
|
|
|
cocoapods {
|
|
summary = "KMP Shared Module"
|
|
homepage = "https://github.com/openMF/mobile-wallet"
|
|
version = "1.0"
|
|
ios.deploymentTarget = "16.0"
|
|
podfile = project.file("../cmp-ios/Podfile")
|
|
|
|
framework {
|
|
baseName = "ComposeApp"
|
|
isStatic = true
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "org.mifospay.shared"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
minSdk = 26
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
compose.resources {
|
|
publicResClass = true
|
|
generateResClass = always
|
|
} |