2024-01-13 23:24:35 +00:00
|
|
|
pluginManagement {
|
2024-01-22 04:02:41 +00:00
|
|
|
includeBuild("build-logic")
|
2024-01-13 23:24:35 +00:00
|
|
|
repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven("https://www.jitpack.io")
|
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven("https://www.jitpack.io")
|
|
|
|
|
maven("https://plugins.gradle.org/m2/")
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-16 17:45:28 +00:00
|
|
|
rootProject.name = "mobile-wallet"
|
2024-01-13 23:24:35 +00:00
|
|
|
|
2024-01-22 04:02:41 +00:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2024-01-13 23:24:35 +00:00
|
|
|
include(":mifospay")
|
2024-05-27 11:25:38 +00:00
|
|
|
|
2024-01-28 15:28:18 +00:00
|
|
|
include(":core:data")
|
|
|
|
|
include(":core:datastore")
|
|
|
|
|
include(":core:designsystem")
|
|
|
|
|
include(":core:ui")
|
|
|
|
|
include(":core:common")
|
2024-02-17 14:46:06 +00:00
|
|
|
include(":core:network")
|
|
|
|
|
include(":core:network")
|
|
|
|
|
include(":core:model")
|
2024-03-18 01:46:11 +00:00
|
|
|
include(":core:datastore-proto")
|
2024-03-24 19:32:15 +00:00
|
|
|
include(":core:analytics")
|
2024-05-27 11:25:38 +00:00
|
|
|
|
2024-06-19 16:11:13 +00:00
|
|
|
include(":feature:history")
|
2024-06-17 17:23:12 +00:00
|
|
|
include(":feature:receipt")
|
2024-06-13 16:31:33 +00:00
|
|
|
include(":feature:faq")
|
2024-05-27 11:25:38 +00:00
|
|
|
include(":feature:passcode")
|
|
|
|
|
include(":feature:auth")
|
|
|
|
|
include(":feature:make-transfer")
|
2024-05-27 12:55:33 +00:00
|
|
|
include(":feature:send-money")
|
2024-06-15 16:44:59 +00:00
|
|
|
include(":feature:notification")
|
2024-06-13 16:05:41 +00:00
|
|
|
include(":feature:editpassword")
|
2024-06-17 17:13:31 +00:00
|
|
|
include(":feature:kyc")
|
2024-06-17 17:11:54 +00:00
|
|
|
include(":feature:savedcards")
|
2024-06-18 11:08:15 +00:00
|
|
|
include(":feature:invoices")
|
2024-06-19 16:11:13 +00:00
|
|
|
include(":feature:invoices")
|
2024-06-19 16:10:23 +00:00
|
|
|
include(":feature:settings")
|
2024-06-19 02:35:13 +00:00
|
|
|
include(":feature:profile")
|
2024-06-20 15:14:13 +00:00
|
|
|
include(":feature:merchants")
|
2024-06-20 15:13:05 +00:00
|
|
|
include(":feature:accounts")
|
2024-06-20 15:10:48 +00:00
|
|
|
include(":feature:standing-instruction")
|
2024-06-20 15:09:50 +00:00
|
|
|
include(":feature:payments")
|