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-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-13 16:05:41 +00:00
|
|
|
include(":feature:editpassword")
|