mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:36:57 +00:00
47 lines
1.5 KiB
Plaintext
47 lines
1.5 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.mifospay.android.library)
|
|
alias(libs.plugins.mifospay.android.library.compose)
|
|
id("com.google.devtools.ksp")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.mifos.library.passcode"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.compose.foundation)
|
|
implementation(libs.androidx.compose.foundation.layout)
|
|
implementation(libs.androidx.compose.material.iconsExtended)
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.runtime)
|
|
implementation(libs.androidx.compose.ui.util)
|
|
|
|
implementation(libs.androidx.lifecycle.runtimeCompose)
|
|
implementation(libs.androidx.lifecycle.viewModelCompose)
|
|
implementation(libs.androidx.navigation.compose)
|
|
|
|
implementation(platform(libs.koin.bom))
|
|
implementation(libs.io.insert.koin.koin.core)
|
|
implementation(libs.koin.android)
|
|
implementation(libs.koin.androidx.navigation)
|
|
implementation(libs.koin.androidx.compose)
|
|
implementation(libs.koin.core.viewmodel)
|
|
|
|
|
|
testImplementation(libs.koin.test)
|
|
testImplementation(libs.koin.test.junit4)
|
|
testImplementation(libs.koin.test.junit5)
|
|
|
|
}
|