mirror of
https://github.com/openMF/mifos-mobile.git
synced 2026-02-06 11:26:51 +00:00
* MM-102 KMP dependencies setup (#2729) * fix: API endpoint --------- Co-authored-by: Sk Niyaj Ali <skniyajali0@gmail.com> Co-authored-by: Pronay Sarker <pronaycoding@gmail.com>
38 lines
1.1 KiB
Plaintext
38 lines
1.1 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-mobile/blob/master/LICENSE.md
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.mifos.android.library)
|
|
alias(libs.plugins.mifos.android.library.compose)
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
namespace = "org.mifos.mobile.core.designsystem"
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.androidx.compose.ui)
|
|
api(libs.androidx.compose.foundation)
|
|
api(libs.androidx.compose.foundation.layout)
|
|
api(libs.androidx.compose.material.iconsExtended)
|
|
api(libs.androidx.compose.material3)
|
|
api(libs.androidx.compose.runtime)
|
|
api(libs.androidx.compose.ui.util)
|
|
api(libs.androidx.activity.compose)
|
|
|
|
// Accompanist Pager Library
|
|
implementation(libs.accompanist.pager)
|
|
|
|
testImplementation(libs.androidx.compose.ui.test)
|
|
androidTestImplementation(libs.androidx.compose.ui.test)
|
|
}
|