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
26 lines
650 B
Plaintext
26 lines
650 B
Plaintext
plugins {
|
|
alias(libs.plugins.mifospay.android.library)
|
|
alias(libs.plugins.mifospay.android.library.compose)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.mifospay.core.ui"
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
apply(from = "${project.rootDir}/config/quality/quality.gradle")
|
|
|
|
dependencies {
|
|
api(projects.core.designsystem)
|
|
api(projects.core.model)
|
|
api(projects.core.common)
|
|
api(libs.androidx.metrics)
|
|
api(projects.core.analytics)
|
|
|
|
implementation(libs.accompanist.pager)
|
|
implementation(libs.androidx.browser)
|
|
implementation(libs.coil.kt)
|
|
implementation(libs.coil.kt.compose)
|
|
} |