mobile-wallet/settings.gradle.kts
Aditya Kumdale b1b9d31e14
Move editpassword to feature module (#1654)
* fix: moved password to feature module

* fixed errors in EditPasswordScreen
2024-06-13 12:05:41 -04:00

41 lines
1006 B
Plaintext

pluginManagement {
includeBuild("build-logic")
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/")
}
}
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(":feature:passcode")
include(":feature:auth")
include(":feature:make-transfer")
include(":feature:send-money")
include(":feature:editpassword")