mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:36:57 +00:00
* Final Cleanup - Refactor Deprecated Libraries & Apply Custom Lint * Fix - [:ci] Fixed id of run_check job * Fix - [:ci] Fixed id of run_check job * Fix - [:mifospay] Updated splash screen icon Updated the splash screen icon to use the correct drawable and adjusted the size of the icon in the drawable . Also, disabled the `ResourceName` lint rule until the libraries are shipped to Maven. Finally, updated the CI workflow to include the dependency guard job in the build job's needs. * Refactor - AccountsScreen Icons to MifosIcons * - Fixing DesignSystem Lint Error * - Uploading Lint Baseline * - Fixing Formatting
68 lines
1.6 KiB
Plaintext
68 lines
1.6 KiB
Plaintext
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://www.jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
rootProject.name = "mobile-wallet"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
include(":mifospay")
|
|
|
|
include(":core:data")
|
|
include(":core:datastore")
|
|
include(":core:designsystem")
|
|
include(":core:ui")
|
|
include(":core:common")
|
|
include(":core:network")
|
|
include(":core:network")
|
|
include(":core:model")
|
|
include(":core:datastore-proto")
|
|
include(":core:analytics")
|
|
|
|
include(":lint")
|
|
|
|
include(":feature:home")
|
|
include(":feature:history")
|
|
include(":feature:receipt")
|
|
include(":feature:faq")
|
|
include(":feature:auth")
|
|
include(":feature:make-transfer")
|
|
include(":feature:send-money")
|
|
include(":feature:notification")
|
|
include(":feature:editpassword")
|
|
include(":feature:kyc")
|
|
include(":feature:savedcards")
|
|
include(":feature:invoices")
|
|
include(":feature:invoices")
|
|
include(":feature:settings")
|
|
include(":feature:profile")
|
|
include(":feature:finance")
|
|
include(":feature:merchants")
|
|
include(":feature:accounts")
|
|
include(":feature:standing-instruction")
|
|
include(":feature:payments")
|
|
include(":feature:request-money")
|
|
include(":feature:upi-setup")
|
|
include(":feature:qr")
|
|
include(":feature:search")
|
|
|
|
include(":libs:country-code-picker")
|
|
include(":libs:pullrefresh")
|
|
include(":libs:material3-navigation")
|
|
include(":libs:mifos-passcode")
|
|
|
|
include(":shared")
|
|
include(":desktop")
|