mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 09:37:24 +00:00
* Refactor: Applied Spotless & Detekt Compose Rules - :feature:accounts - :feature:auth - :feature:editpassword - :feature:finance * Refactor - [:feature:history] Applied Spotless & Detekt Compose Rules * Refactor - [:feature:home] Applied Spotless & Detekt Compose Rules * Refactor - [:feature:invoices] Applied Spotless & Detekt Compose Rules * Refactor - [:feature:kyc] Applied Spotless & Detekt Compose Rules * Refactor - [:feature:make-transfer] Applied Spotless & Detekt Compose Rules
49 lines
1.5 KiB
Plaintext
49 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.feature)
|
|
alias(libs.plugins.mifospay.android.library.compose)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.mifospay.feature.auth"
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
}
|
|
|
|
apply(from = "${project.rootDir}/config/quality/quality.gradle")
|
|
|
|
dependencies {
|
|
implementation(projects.core.data)
|
|
implementation(projects.feature.passcode)
|
|
|
|
implementation(libs.compose.country.code.picker)
|
|
// TODO:: this should be removed
|
|
implementation(libs.compose.material)
|
|
|
|
// Credentials Manager
|
|
implementation(libs.androidx.credentials)
|
|
// optional - needed for credentials support from play services, for devices running
|
|
// Android 13 and below.
|
|
implementation(libs.androidx.credentials.play.services.auth)
|
|
implementation(libs.googleid)
|
|
|
|
implementation(libs.mifosPasscode)
|
|
|
|
implementation(libs.play.services.auth)
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.androidx.test.ext.junit)
|
|
androidTestImplementation(libs.espresso.core)
|
|
} |