├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── ci-gradle.properties └── workflows │ ├── android-release.yml │ ├── monthly-release.yaml │ ├── multi-platform-build-and-publish.yml │ ├── pr-check.yml │ ├── promote-to-production.yml │ ├── tag-weekly-release.yml │ └── upload-demo-app-on-firebase-kmp.yaml ├── .gitignore ├── .ruby-version ├── .run ├── cmp-desktop.run.xml ├── cmp-ios.run.xml ├── cmp-web-js.run.xml └── cmp-web-wasm.run.xml ├── AndroidStyle.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── ci-prepush.bat ├── ci-prepush.sh ├── cmp-android ├── .gitignore ├── README.md ├── build.gradle.kts ├── dependencies │ ├── demoDebugRuntimeClasspath.txt │ ├── demoReleaseRuntimeClasspath.txt │ ├── prodDebugRuntimeClasspath.txt │ ├── prodReleaseRuntimeClasspath.tree.txt │ └── prodReleaseRuntimeClasspath.txt ├── google-services.json ├── lint-baseline.xml ├── prodRelease-badging.txt ├── proguard-rules.pro └── src │ ├── demo │ ├── ic_launcher-playstore.png │ └── res │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ └── ic_launcher_background.xml │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── cmp │ │ └── android │ │ └── app │ │ ├── AndroidApp.kt │ │ ├── ComponentActivityExtensions.kt │ │ ├── MainActivity.kt │ │ └── util │ │ └── UiExtenstions.kt │ └── res │ ├── drawable │ ├── mifos_logo.png │ ├── mifos_splash_screen_logo.png │ └── splash_icon.webp │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_laundher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_laundher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_laundher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_laundher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_laundher_round.webp │ ├── values-ar │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fa-rAF │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-km │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-night │ ├── colors.xml │ └── splash.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-ur │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ ├── splash.xml │ └── strings.xml │ └── xml │ └── fileproviderpath.xml ├── cmp-desktop ├── .gitignore ├── README.md ├── build.gradle.kts ├── compose-desktop.pro ├── entitlements.plist ├── icons │ ├── ic_launcher.icns │ ├── ic_launcher.ico │ └── ic_launcher.png ├── runtime-entitlements.plist └── src │ └── jvmMain │ └── kotlin │ └── main.kt ├── cmp-ios ├── Configuration │ └── Config.xcconfig ├── Podfile ├── Podfile.lock ├── iosApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── hekmatullahamin.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── kapilmaurya.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── cmp-ios.xcscheme │ └── xcuserdata │ │ ├── hekmatullahamin.xcuserdatad │ │ └── xcschemes │ │ │ ├── iosApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── kapilmaurya.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── iosApp.xcworkspace │ └── contents.xcworkspacedata └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── mifosmobile_logo_1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── cmp-navigation ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── cmp │ │ └── navigation │ │ └── authenticated │ │ └── AuthenticatedNavigation.android.kt │ ├── appleMain │ └── kotlin │ │ └── cmp │ │ └── navigation │ │ └── authenticated │ │ └── AuthenticatedNavigation.apple.kt │ ├── commonMain │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── cmp │ │ └── navigation │ │ ├── ComposeApp.kt │ │ ├── ComposeAppViewModel.kt │ │ ├── authenticated │ │ └── AuthenticatedNavigation.kt │ │ ├── authenticatednavbar │ │ ├── AuthenticatedNavBarTabItem.kt │ │ ├── AuthenticatedNavbarNavigation.kt │ │ ├── AuthenticatedNavbarNavigationScreen.kt │ │ └── AuthenticatedNavbarNavigationViewModel.kt │ │ ├── di │ │ └── KoinModules.kt │ │ ├── navigation │ │ ├── NavGraphRoute.kt │ │ └── PasscodeNavGraph.kt │ │ ├── rootnav │ │ ├── RootNavNavigation.kt │ │ ├── RootNavScreen.kt │ │ └── RootNavViewModel.kt │ │ ├── splash │ │ ├── SplashNavigation.kt │ │ └── SplashScreen.kt │ │ ├── ui │ │ ├── MifosScaffold.kt │ │ ├── RememberMifosNavController.kt │ │ └── ScaffoldNavigationData.kt │ │ └── utils │ │ └── RootUtils.kt │ ├── desktopMain │ └── java │ │ └── cmp │ │ └── navigation │ │ └── authenticated │ │ └── AuthenticatedNavigation.desktop.kt │ ├── jsMain │ └── kotlin │ │ └── cmp │ │ └── navigation │ │ └── authenticated │ │ └── AuthenticatedNavigation.js.kt │ └── wasmJsMain │ └── kotlin │ └── cmp │ └── navigation │ └── authenticated │ └── AuthenticatedNavigation.wasmJs.kt ├── cmp-shared ├── README.md ├── build.gradle.kts ├── cmp_shared.podspec └── src │ ├── commonMain │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── cmp │ │ └── shared │ │ ├── SharedApp.kt │ │ └── utils │ │ └── KoinExt.kt │ └── nativeMain │ └── kotlin │ └── org │ └── mifos │ └── shared │ └── ViewController.kt ├── cmp-web ├── .gitignore ├── README.md ├── build.gradle.kts └── src │ ├── jsMain │ ├── kotlin │ │ └── Application.kt │ └── resources │ │ ├── favicon.ico │ │ ├── index.html │ │ └── styles.css │ ├── wasmJsMain │ ├── kotlin │ │ └── Main.kt │ └── resources │ │ ├── favicon.ico │ │ └── index.html │ └── webpack.config.d │ └── cleanupSourcemap.js ├── compose_compiler_config.conf ├── config ├── detekt │ └── detekt.yml └── quality │ ├── checkstyle │ └── checkstyle-config.xml │ ├── findbugs │ └── android-exclude-filter.xml │ ├── pmd │ └── pmd-ruleset.xml │ └── quality.gradle ├── core-base ├── analytics │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidDemo │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── analytics │ │ │ └── di │ │ │ └── AnalyticsModule.kt │ │ ├── androidMain │ │ └── AndroidManifest.xml │ │ ├── androidProd │ │ └── kotlin │ │ │ └── template.core.base.analytics │ │ │ └── di │ │ │ └── AnalyticsModule.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── analytics │ │ │ ├── AnalyticsEvent.kt │ │ │ ├── AnalyticsExtensions.kt │ │ │ ├── AnalyticsHelper.kt │ │ │ ├── NoOpAnalyticsHelper.kt │ │ │ ├── PerformanceTracker.kt │ │ │ ├── StubAnalyticsHelper.kt │ │ │ ├── TestingUtils.kt │ │ │ ├── UiHelpers.kt │ │ │ ├── ValidationUtils.kt │ │ │ └── di │ │ │ └── AnalyticsModule.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── analytics │ │ │ └── di │ │ │ └── AnalyticsModule.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── template.core.base.analytics │ │ │ └── di │ │ │ └── AnalyticsModule.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── template.core.base.analytics.di │ │ │ └── AnalyticsModule.native.kt │ │ ├── nonJsCommonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── analytics │ │ │ └── FirebaseAnalyticsHelper.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── analytics │ │ └── di │ │ └── AnalyticsModule.wasmJs.kt ├── common │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── common │ │ │ ├── Parcelize.android.kt │ │ │ ├── di │ │ │ └── CommonModule.android.kt │ │ │ └── manager │ │ │ └── DispatchManagerImpl.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── common │ │ │ ├── DataState.kt │ │ │ ├── DataStateExtensions.kt │ │ │ ├── ImageExtension.kt │ │ │ ├── Parcelize.kt │ │ │ ├── di │ │ │ └── CommonModule.kt │ │ │ └── manager │ │ │ └── DispatcherManager.kt │ │ └── nonAndroidMain │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── common │ │ ├── Parcelize.nonAndroid.kt │ │ ├── di │ │ └── CommonModule.nonAndroid.kt │ │ └── manager │ │ └── DispatchManagerImpl.kt ├── database │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── database │ │ │ └── AppDatabaseFactory.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── database │ │ │ ├── Room.kt │ │ │ └── TypeConverter.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── database │ │ │ └── AppDatabaseFactory.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── database │ │ │ └── AppDatabaseFactory.kt │ │ └── nonJsCommonMain │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── database │ │ ├── Room.nonJsCommon.kt │ │ └── TypeConverter.nonJsCommon.kt ├── datastore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── datastore │ │ │ ├── cache │ │ │ ├── CacheManager.kt │ │ │ └── LruCacheManager.kt │ │ │ ├── contracts │ │ │ ├── CacheableDataStore.kt │ │ │ ├── DataStore.kt │ │ │ ├── DataStoreChangeEvent.kt │ │ │ ├── ReactiveDataStore.kt │ │ │ └── TypedDataStore.kt │ │ │ ├── di │ │ │ └── CoreDatastoreModule.kt │ │ │ ├── exceptions │ │ │ └── DataStoreExceptions.kt │ │ │ ├── extensions │ │ │ └── FlowExtensions.kt │ │ │ ├── factory │ │ │ └── DataStoreFactory.kt │ │ │ ├── handlers │ │ │ ├── PrimitiveTypeHandlers.kt │ │ │ └── TypeHandler.kt │ │ │ ├── reactive │ │ │ ├── ChangeNotifier.kt │ │ │ ├── DefaultChangeNotifier.kt │ │ │ ├── DefaultValueObserver.kt │ │ │ ├── PreferenceFlowOperators.kt │ │ │ └── ValueObserver.kt │ │ │ ├── repository │ │ │ ├── DefaultReactivePreferencesRepository.kt │ │ │ ├── PreferencesRepository.kt │ │ │ └── ReactivePreferencesRepository.kt │ │ │ ├── serialization │ │ │ ├── JsonSerializationStrategy.kt │ │ │ └── SerializationStrategy.kt │ │ │ ├── store │ │ │ ├── BasicPreferencesStore.kt │ │ │ ├── CachedPreferencesStore.kt │ │ │ └── ReactiveUserPreferencesDataStore.kt │ │ │ └── validation │ │ │ ├── DefaultPreferencesValidator.kt │ │ │ └── PreferencesValidator.kt │ │ └── commonTest │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── datastore │ │ ├── DataStoreComprehensiveFeatureTest.kt │ │ ├── EnhancedUserPreferencesDataStoreTest.kt │ │ ├── ReactiveUserPreferencesDataStoreTest.kt │ │ ├── UserPreferencesDataStoreTest.kt │ │ ├── cache │ │ └── LRUCacheManagerTest.kt │ │ ├── extension │ │ └── FlowExtensionsTest.kt │ │ ├── integration │ │ └── ReactiveIntegrationTest.kt │ │ ├── notification │ │ └── DefaultChangeNotifierTest.kt │ │ ├── operators │ │ └── PreferenceFlowOperatorsTest.kt │ │ ├── performance │ │ └── ReactivePerformanceTest.kt │ │ ├── repository │ │ └── DefaultReactiveUserPreferencesRepositoryTest.kt │ │ ├── serialization │ │ └── JsonSerializationStrategyTest.kt │ │ └── validation │ │ └── DefaultPreferencesValidatorTest.kt ├── designsystem │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── designsystem │ │ ├── KptMaterialTheme.kt │ │ ├── KptTheme.kt │ │ ├── KptThemeExtensions.kt │ │ ├── component │ │ ├── BounceAnimation.kt │ │ ├── KptAnimationSpecs.kt │ │ ├── KptShimmerLoadingBox.kt │ │ ├── KptSnackbarHost.kt │ │ ├── KptTopAppBar.kt │ │ └── SlideTransition.kt │ │ ├── core │ │ ├── ComponentStateHolder.kt │ │ ├── KptComponent.kt │ │ └── KptTopAppBarConfiguration.kt │ │ ├── layout │ │ ├── AdaptiveListDetailPaneScaffold.kt │ │ ├── AdaptiveNavigableListDetailScaffold.kt │ │ ├── AdaptiveNavigableSupportingPaneScaffold.kt │ │ ├── AdaptiveNavigationSuiteScaffold.kt │ │ ├── KptFlowColumn.kt │ │ ├── KptFlowRow.kt │ │ ├── KptGrid.kt │ │ ├── KptMasonryGrid.kt │ │ ├── KptResponsiveLayout.kt │ │ ├── KptSidebarLayout.kt │ │ ├── KptSplitPane.kt │ │ └── KptStack.kt │ │ └── theme │ │ └── KptColorSchemeImpl.kt ├── network │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── corebase │ │ │ └── network │ │ │ └── KtorHttpClient.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── corebase │ │ │ └── network │ │ │ ├── KtorHttpClient.kt │ │ │ ├── NetworkError.kt │ │ │ ├── NetworkResult.kt │ │ │ └── factory │ │ │ └── ResultSuspendConverterFactory.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── corebase │ │ │ └── network │ │ │ └── KtorHttpClient.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── corebase │ │ │ └── network │ │ │ └── KtorHttpClient.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── corebase │ │ │ └── network │ │ │ └── KtorHttpClient.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── corebase │ │ └── network │ │ └── KtorHttpClient.wasmJs.kt ├── platform │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── platform │ │ │ ├── LocalManagerProviders.android.kt │ │ │ ├── context │ │ │ └── AppContext.android.kt │ │ │ ├── garbage │ │ │ └── GarbageCollectionManager.android.kt │ │ │ ├── intent │ │ │ └── IntentManagerImpl.kt │ │ │ ├── review │ │ │ └── AppReviewManagerImpl.kt │ │ │ ├── update │ │ │ └── AppUpdateManagerImpl.kt │ │ │ └── utils │ │ │ └── AndroidBuildUtils.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── template │ │ │ └── core │ │ │ └── base │ │ │ └── platform │ │ │ ├── LocalManagerProviders.kt │ │ │ ├── context │ │ │ └── AppContext.kt │ │ │ ├── di │ │ │ └── PlatformModule.kt │ │ │ ├── garbage │ │ │ ├── GarbageCollectionManager.kt │ │ │ └── GarbageCollectionManagerImpl.kt │ │ │ ├── intent │ │ │ └── IntentManager.kt │ │ │ ├── model │ │ │ └── MimeType.kt │ │ │ ├── review │ │ │ └── AppReviewManager.kt │ │ │ └── update │ │ │ └── AppUpdateManager.kt │ │ └── nonAndroidMain │ │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── platform │ │ ├── LocalManagerProviders.native.kt │ │ ├── context │ │ └── AppContext.native.kt │ │ ├── garbage │ │ └── GarbageCollectionManager.nonAndroid.kt │ │ ├── intent │ │ └── IntentManagerImpl.kt │ │ ├── review │ │ └── AppReviewManagerImpl.kt │ │ └── update │ │ └── AppUpdateManagerImpl.kt └── ui │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ ├── androidMain │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── ui │ │ ├── JankStatsExtensions.kt │ │ ├── ReportDrawnExt.android.kt │ │ └── ShareUtils.android.kt │ ├── commonMain │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── ui │ │ ├── BackgroundEvent.kt │ │ ├── BaseViewModel.kt │ │ ├── EventsEffect.kt │ │ ├── ImageLoaderExt.kt │ │ ├── JankStatsExtension.kt │ │ ├── LifecycleEventEffect.kt │ │ ├── NavGraphBuilderExtensions.kt │ │ ├── ReportDrawnExt.kt │ │ ├── ShareUtils.kt │ │ ├── SharedElementExt.kt │ │ ├── StringExt.kt │ │ └── Transition.kt │ ├── desktopMain │ └── java │ │ └── template │ │ └── core │ │ └── base │ │ └── ui │ │ └── ShareUtils.desktop.kt │ ├── jsCommonMain │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── ui │ │ └── ShareUtils.kt │ ├── nativeMain │ └── kotlin │ │ └── template │ │ └── core │ │ └── base │ │ └── ui │ │ └── ShareUtils.native.kt │ └── nonAndroidMain │ └── kotlin │ └── template │ └── core │ └── base │ └── ui │ ├── JankStatsExtension.jvmJs.kt │ └── ReportDrawnExt.jvmJs.kt ├── core ├── common │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── common │ │ │ ├── CurrencyFormatter.android.kt │ │ │ ├── FileUtils.android.kt │ │ │ ├── FormatAmount.android.kt │ │ │ └── di │ │ │ └── DispatchersModule.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── common │ │ │ ├── Constants.kt │ │ │ ├── CurrencyFormatter.kt │ │ │ ├── DataState.kt │ │ │ ├── DataStateExtensions.kt │ │ │ ├── DateHelper.kt │ │ │ ├── FileUtils.kt │ │ │ ├── FormatAmount.kt │ │ │ ├── ImageExtension.kt │ │ │ ├── LanguageHelper.kt │ │ │ ├── MifosDispatchers.kt │ │ │ ├── SymbolsUtils.kt │ │ │ ├── Utils.kt │ │ │ ├── di │ │ │ └── DispatchersModule.kt │ │ │ └── utils │ │ │ └── StringExtensions.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── common │ │ │ ├── CurrencyFormatter.jvm.kt │ │ │ ├── FileUtils.jvm.kt │ │ │ ├── FormatAmount.desktop.kt │ │ │ └── di │ │ │ └── DispatchersModule.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── common │ │ │ ├── CurrencyFormatter.js.kt │ │ │ ├── FileUtils.js.kt │ │ │ ├── FormatAmount.js.kt │ │ │ └── di │ │ │ └── DispatchersModule.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── common │ │ │ ├── CurrencyFormatter.native.kt │ │ │ ├── FileUtils.native.kt │ │ │ ├── FormatAmount.native.kt │ │ │ └── di │ │ │ └── DispatchersModule.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── common │ │ ├── CurrencyFormatter.js.kt │ │ ├── FileUtils.wasmJs.kt │ │ ├── FormatAmount.wasmJs.kt │ │ └── di │ │ └── DispatchersModule.js.kt ├── data │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── kotlin │ │ └── src │ │ │ └── test │ │ │ └── resources │ │ │ └── mockito-extensions │ │ │ └── org.mockito.plugins.MockMaker │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── data │ │ │ ├── di │ │ │ ├── AndroidPlatformDependentDataModule.kt │ │ │ └── AndroidPlatformModule.kt │ │ │ └── util │ │ │ └── ConnectivityManagerNetworkMonitor.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── data │ │ │ ├── di │ │ │ ├── PlatformDependentDataModule.kt │ │ │ └── RepositoryModule.kt │ │ │ ├── mapper │ │ │ ├── Charge.kt │ │ │ └── MifosNotification.kt │ │ │ ├── repository │ │ │ ├── AccountsRepository.kt │ │ │ ├── BeneficiaryRepository.kt │ │ │ ├── ClientChargeRepository.kt │ │ │ ├── ClientRepository.kt │ │ │ ├── GuarantorRepository.kt │ │ │ ├── HomeRepository.kt │ │ │ ├── LoanRepository.kt │ │ │ ├── NotificationRepository.kt │ │ │ ├── RecentTransactionRepository.kt │ │ │ ├── ReviewLoanApplicationRepository.kt │ │ │ ├── SavingsAccountRepository.kt │ │ │ ├── ShareAccountRepository.kt │ │ │ ├── ThirdPartyTransferRepository.kt │ │ │ ├── TransferRepository.kt │ │ │ ├── UserAuthRepository.kt │ │ │ ├── UserDataRepository.kt │ │ │ └── UserDetailRepository.kt │ │ │ ├── repositoryImpl │ │ │ ├── AccountsRepositoryImp.kt │ │ │ ├── AuthenticationUserRepository.kt │ │ │ ├── BeneficiaryRepositoryImp.kt │ │ │ ├── ClientChargeRepositoryImp.kt │ │ │ ├── ClientRepositoryImp.kt │ │ │ ├── GuarantorRepositoryImp.kt │ │ │ ├── HomeRepositoryImp.kt │ │ │ ├── LoanRepositoryImp.kt │ │ │ ├── NotificationRepositoryImp.kt │ │ │ ├── RecentTransactionRepositoryImp.kt │ │ │ ├── ReviewLoanApplicationRepositoryImpl.kt │ │ │ ├── SavingsAccountRepositoryImp.kt │ │ │ ├── ShareAccountRepositoryImp.kt │ │ │ ├── ThirdPartyTransferRepositoryImp.kt │ │ │ ├── TransferRepositoryImp.kt │ │ │ ├── UserAuthRepositoryImp.kt │ │ │ └── UserDetailRepositoryImp.kt │ │ │ └── util │ │ │ ├── ErrorHandling.kt │ │ │ └── NetworkMonitor.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── data │ │ │ ├── JsPlatformDependentDataModule.kt │ │ │ └── di │ │ │ └── PlatformDependentDataModule.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── data │ │ │ ├── JsPlatformDependentDataModule.kt │ │ │ └── di │ │ │ └── PlatformDependentDataModule.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── data │ │ │ ├── NativePlatformDependentDataModule.kt │ │ │ └── di │ │ │ └── PlatformDependentDataModule.native.kt │ │ ├── test │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── mifos │ │ │ │ └── mobile │ │ │ │ └── core │ │ │ │ └── data │ │ │ │ └── repositories │ │ │ │ ├── AccountsRepositoryImpTest.kt │ │ │ │ ├── BeneficiaryRepositoryImpTest.kt │ │ │ │ ├── ClientChargeRepositoryImpTest.kt │ │ │ │ ├── ClientRepositoryImpTest.kt │ │ │ │ ├── GuarantorRepositoryImpTest.kt │ │ │ │ ├── HomeRepositoryImpTest.kt │ │ │ │ ├── LoanRepositoryImpTest.kt │ │ │ │ ├── NotificationRepositoryImpTest.kt │ │ │ │ ├── RecentTransactionRepositoryImpTest.kt │ │ │ │ ├── SavingsAccountRepositoryImpTest.kt │ │ │ │ ├── ThirdPartyTransferRepositoryImpTest.kt │ │ │ │ ├── TransferRepositoryImpTest.kt │ │ │ │ ├── UserAuthRepositoryImpTest.kt │ │ │ │ └── UserDetailRepositoryImpTest.kt │ │ └── resources │ │ │ └── mockito-extensions │ │ │ └── org.mockito.plugins.MockMaker │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── data │ │ ├── JsPlatformDependentDataModule.kt │ │ └── di │ │ └── PlatformDependentDataModule.wasmJs.kt ├── database │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── schemas │ │ └── org.mifos.mobile.core.database.AppDatabase │ │ │ └── 1.json │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── database │ │ │ ├── AppDatabase.kt │ │ │ ├── AppDatabaseFactory.kt │ │ │ ├── Room.android.kt │ │ │ ├── TypeConverter.android.kt │ │ │ └── di │ │ │ └── DatabaseModule.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── database │ │ │ ├── AppDatabase.kt │ │ │ ├── Room.kt │ │ │ ├── TypeConverter.kt │ │ │ ├── dao │ │ │ ├── ChargeDao.kt │ │ │ └── MifosNotificationDao.kt │ │ │ ├── di │ │ │ └── DatabaseModule.kt │ │ │ ├── entity │ │ │ ├── ChargeCalculationTypeEntity.kt │ │ │ ├── ChargeEntity.kt │ │ │ ├── ChargeListResponse.kt │ │ │ ├── ChargeTimeTypeEntity.kt │ │ │ ├── CurrencyEntity.kt │ │ │ └── MifosNotificationEntity.kt │ │ │ └── utils │ │ │ └── ChargeTypeConverters.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── database │ │ │ ├── AppDatabase.kt │ │ │ ├── AppDatabaseFactory.kt │ │ │ ├── Room.desktop.kt │ │ │ ├── TypeConverter.desktop.kt │ │ │ └── di │ │ │ └── DatabaseModule.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── database │ │ │ ├── AppDatabase.js.kt │ │ │ ├── TypeConverter.js.kt │ │ │ └── di │ │ │ └── DatabaseModule.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── database │ │ │ ├── AppDatabase.kt │ │ │ ├── AppDatabaseFactory.kt │ │ │ ├── Room.native.kt │ │ │ ├── TypeConverter.native.kt │ │ │ └── di │ │ │ └── DatabaseModule.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── database │ │ ├── AppDatabase.wasmJs.kt │ │ ├── TypeConverter.wasmJs.kt │ │ └── di │ │ └── DatabaseModule.wasmJs.kt ├── datastore │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidMain │ │ └── AndroidManifest.xml │ │ └── commonMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── datastore │ │ ├── UserPreferencesDataSource.kt │ │ ├── UserPreferencesRepository.kt │ │ ├── UserPreferencesRepositoryImpl.kt │ │ ├── di │ │ └── PreferenceModule.kt │ │ └── model │ │ ├── AppSettings.kt │ │ ├── AppTheme.kt │ │ ├── MifosAppLanguage.kt │ │ └── UserData.kt ├── designsystem │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── designsystem │ │ │ └── theme │ │ │ └── Theme.android.kt │ │ ├── commonMain │ │ ├── composeResources │ │ │ ├── font │ │ │ │ ├── inter_black.ttf │ │ │ │ ├── inter_bold.ttf │ │ │ │ ├── inter_extra_bold.ttf │ │ │ │ ├── inter_extra_light.ttf │ │ │ │ ├── inter_light.ttf │ │ │ │ ├── inter_medium.ttf │ │ │ │ ├── inter_regular.ttf │ │ │ │ ├── inter_semi_bold.ttf │ │ │ │ └── inter_thin.ttf │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── designsystem │ │ │ ├── component │ │ │ ├── MifosAlertDialog.kt │ │ │ ├── MifosBasicDialog.kt │ │ │ ├── MifosBottomSheet.kt │ │ │ ├── MifosButton.kt │ │ │ ├── MifosCard.kt │ │ │ ├── MifosDropDownMenu.kt │ │ │ ├── MifosLoadingDialog.kt │ │ │ ├── MifosNavigation.kt │ │ │ ├── MifosOtpTextField.kt │ │ │ ├── MifosPasswordField.kt │ │ │ ├── MifosRadioButton.kt │ │ │ ├── MifosScaffold.kt │ │ │ ├── MifosSearchTextField.kt │ │ │ ├── MifosTab.kt │ │ │ ├── MifosTabPager.kt │ │ │ ├── MifosTextField.kt │ │ │ ├── MifosTopAppBar.kt │ │ │ ├── MifosTopBar.kt │ │ │ └── scrollbar │ │ │ │ ├── AppScrollbars.kt │ │ │ │ ├── LazyScrollbarUtilities.kt │ │ │ │ ├── Scrollbar.kt │ │ │ │ ├── ScrollbarExt.kt │ │ │ │ └── ThumbExt.kt │ │ │ ├── icon │ │ │ └── MifosIcons.kt │ │ │ ├── theme │ │ │ ├── BackgroundTheme.kt │ │ │ ├── Color.kt │ │ │ ├── DesignToken.kt │ │ │ ├── MifosBackground.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ │ └── utils │ │ │ ├── ModifierExt.kt │ │ │ └── NonLetterColorVisualTransformation.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── designsystem │ │ │ └── theme │ │ │ └── Theme.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── designsystem │ │ │ └── theme │ │ │ └── Theme.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── designsystem │ │ │ └── theme │ │ │ └── Theme.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── designsystem │ │ └── theme │ │ └── Theme.wasmJs.kt ├── logs │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── androidMain │ │ └── kotlin │ │ ├── AndroidManifest.xml │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── logs │ │ ├── AnalyticsEvent.kt │ │ ├── AnalyticsHelper.kt │ │ └── di │ │ ├── AnalyticsModule.kt │ │ └── FirebaseAnalyticsHelper.kt ├── model │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── model │ │ │ └── Parcelize.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── model │ │ │ ├── AuthState.kt │ │ │ ├── Country.kt │ │ │ ├── CountryFlagUtils.kt │ │ │ ├── EventType.kt │ │ │ ├── LanguageConfig.kt │ │ │ ├── LoanStatus.kt │ │ │ ├── MifosThemeConfig.kt │ │ │ ├── Parcelize.kt │ │ │ ├── SavingStatus.kt │ │ │ ├── StatusNavigationDestination.kt │ │ │ ├── UserData.kt │ │ │ ├── entity │ │ │ ├── AboutUsItem.kt │ │ │ ├── AccountDetails.kt │ │ │ ├── AccountOptionAndBeneficiary.kt │ │ │ ├── Charge.kt │ │ │ ├── ChargeCalculationType.kt │ │ │ ├── ChargeTimeType.kt │ │ │ ├── CheckboxStatus.kt │ │ │ ├── Currency.kt │ │ │ ├── FAQ.kt │ │ │ ├── MifosNotification.kt │ │ │ ├── Page.kt │ │ │ ├── Timeline.kt │ │ │ ├── Transaction.kt │ │ │ ├── TransferResponse.kt │ │ │ ├── TransferSuccessDestination.kt │ │ │ ├── UpdatePasswordPayload.kt │ │ │ ├── User.kt │ │ │ ├── accounts │ │ │ │ ├── LoanAccountsListResponse.kt │ │ │ │ ├── SavingAccountsListResponse.kt │ │ │ │ ├── loan │ │ │ │ │ ├── AmortizationType.kt │ │ │ │ │ ├── Currency.kt │ │ │ │ │ ├── DaysInMonthType.kt │ │ │ │ │ ├── DaysInYearType.kt │ │ │ │ │ ├── InterestCalculationPeriodType.kt │ │ │ │ │ ├── InterestRateFrequencyType.kt │ │ │ │ │ ├── InterestRecalculationCompoundingType.kt │ │ │ │ │ ├── InterestRecalculationData.kt │ │ │ │ │ ├── InterestType.kt │ │ │ │ │ ├── LoanAccount.kt │ │ │ │ │ ├── LoanType.kt │ │ │ │ │ ├── LoanWithAssociations.kt │ │ │ │ │ ├── LoanWithdraw.kt │ │ │ │ │ ├── Periods.kt │ │ │ │ │ ├── RecalculationCompoundingFrequencyType.kt │ │ │ │ │ ├── RecalculationRestFrequencyType.kt │ │ │ │ │ ├── RepaymentFrequencyType.kt │ │ │ │ │ ├── RepaymentSchedule.kt │ │ │ │ │ ├── RescheduleStrategyType.kt │ │ │ │ │ ├── Status.kt │ │ │ │ │ ├── Summary.kt │ │ │ │ │ ├── TermPeriodFrequencyType.kt │ │ │ │ │ ├── Timeline.kt │ │ │ │ │ ├── calendardata │ │ │ │ │ │ ├── CalendarData.kt │ │ │ │ │ │ ├── EntityType.kt │ │ │ │ │ │ ├── Frequency.kt │ │ │ │ │ │ ├── RepeatsOnNthDayOfMonth.kt │ │ │ │ │ │ └── Type.kt │ │ │ │ │ └── tableview │ │ │ │ │ │ ├── Cell.kt │ │ │ │ │ │ ├── ColumnHeader.kt │ │ │ │ │ │ └── RowHeader.kt │ │ │ │ ├── savings │ │ │ │ │ ├── Currency.kt │ │ │ │ │ ├── PaymentDetailData.kt │ │ │ │ │ ├── PaymentType.kt │ │ │ │ │ ├── SavingAccount.kt │ │ │ │ │ ├── SavingsAccountApplicationPayload.kt │ │ │ │ │ ├── SavingsAccountUpdatePayload.kt │ │ │ │ │ ├── SavingsAccountWithdrawPayload.kt │ │ │ │ │ ├── SavingsWithAssociations.kt │ │ │ │ │ ├── Status.kt │ │ │ │ │ ├── Summary.kt │ │ │ │ │ ├── TimeLine.kt │ │ │ │ │ ├── TransactionType.kt │ │ │ │ │ └── Transactions.kt │ │ │ │ └── share │ │ │ │ │ ├── ShareAccount.kt │ │ │ │ │ ├── Status.kt │ │ │ │ │ └── Timeline.kt │ │ │ ├── beneficiary │ │ │ │ ├── Beneficiary.kt │ │ │ │ ├── BeneficiaryDetail.kt │ │ │ │ ├── BeneficiaryPayload.kt │ │ │ │ └── BeneficiaryUpdatePayload.kt │ │ │ ├── client │ │ │ │ ├── Client.kt │ │ │ │ ├── ClientAccounts.kt │ │ │ │ ├── ClientClassification.kt │ │ │ │ ├── ClientType.kt │ │ │ │ ├── Currency.kt │ │ │ │ ├── DepositType.kt │ │ │ │ ├── Gender.kt │ │ │ │ ├── Group.kt │ │ │ │ ├── Status.kt │ │ │ │ └── Type.kt │ │ │ ├── guarantor │ │ │ │ ├── GuarantorApplicationPayload.kt │ │ │ │ ├── GuarantorPayload.kt │ │ │ │ ├── GuarantorTemplatePayload.kt │ │ │ │ └── GuarantorType.kt │ │ │ ├── mifoserror │ │ │ │ ├── Arg.kt │ │ │ │ ├── Errors.kt │ │ │ │ └── MifosError.kt │ │ │ ├── notification │ │ │ │ ├── NotificationRegisterPayload.kt │ │ │ │ └── NotificationUserDetail.kt │ │ │ ├── payload │ │ │ │ ├── AccountDetail.kt │ │ │ │ ├── LoansPayload.kt │ │ │ │ ├── LoginPayload.kt │ │ │ │ ├── ReviewTransferPayload.kt │ │ │ │ ├── ShareApplicationPayload.kt │ │ │ │ └── TransferPayload.kt │ │ │ ├── register │ │ │ │ ├── RegisterPayload.kt │ │ │ │ └── UserVerify.kt │ │ │ └── templates │ │ │ │ ├── account │ │ │ │ ├── AccountOption.kt │ │ │ │ ├── AccountOptionsTemplate.kt │ │ │ │ └── AccountType.kt │ │ │ │ ├── beneficiary │ │ │ │ ├── AccountTypeOption.kt │ │ │ │ └── BeneficiaryTemplate.kt │ │ │ │ ├── loans │ │ │ │ ├── AccountLinkingOptions.kt │ │ │ │ ├── AccountingRule.kt │ │ │ │ ├── AllowAttributeOverrides.kt │ │ │ │ ├── AmortizationTypeOptions.kt │ │ │ │ ├── ChargeAppliesTo.kt │ │ │ │ ├── ChargeOptions.kt │ │ │ │ ├── ChargePaymentMode.kt │ │ │ │ ├── Currency.kt │ │ │ │ ├── FundOptions.kt │ │ │ │ ├── InterestRateFrequencyTypeOptions.kt │ │ │ │ ├── InterestTypeOptions.kt │ │ │ │ ├── LoanCollateralOptions.kt │ │ │ │ ├── LoanOfficerOptions.kt │ │ │ │ ├── LoanPurposeOptions.kt │ │ │ │ ├── LoanTemplate.kt │ │ │ │ ├── Product.kt │ │ │ │ ├── ProductOptions.kt │ │ │ │ ├── RepaymentFrequencyDaysOfWeekTypeOptions.kt │ │ │ │ ├── RepaymentFrequencyNthDayTypeOptions.kt │ │ │ │ ├── RepaymentFrequencyTypeOptions.kt │ │ │ │ ├── TaxGroup.kt │ │ │ │ ├── TermFrequencyTypeOptions.kt │ │ │ │ ├── Timeline.kt │ │ │ │ └── TransactionProcessingStrategyOptions.kt │ │ │ │ ├── savings │ │ │ │ ├── ChargeAppliesTo.kt │ │ │ │ ├── ChargeCalculationType.kt │ │ │ │ ├── ChargeOptions.kt │ │ │ │ ├── ChargePaymentMode.kt │ │ │ │ ├── ChargeTimeType.kt │ │ │ │ ├── FieldOfficerOptions.kt │ │ │ │ ├── ProductOptions.kt │ │ │ │ ├── SavingsAccountTemplate.kt │ │ │ │ ├── SavingsOptions.kt │ │ │ │ ├── SavingsProduct.kt │ │ │ │ └── Timeline.kt │ │ │ │ ├── shareProduct │ │ │ │ ├── AccountingMappings.kt │ │ │ │ ├── AccountingRule.kt │ │ │ │ ├── Charge.kt │ │ │ │ ├── ChargeType.kt │ │ │ │ ├── Currency.kt │ │ │ │ ├── GlAccount.kt │ │ │ │ ├── LockPeriodTypeEnum.kt │ │ │ │ ├── MarketPrice.kt │ │ │ │ ├── MinimumActivePeriodForDividendsTypeEnum.kt │ │ │ │ └── ShareDetails.kt │ │ │ │ ├── shareProductDetails │ │ │ │ ├── AccountingItem.kt │ │ │ │ ├── AccountingMappings.kt │ │ │ │ ├── Charge.kt │ │ │ │ ├── Currency.kt │ │ │ │ ├── EnumOption.kt │ │ │ │ ├── MarketPrice.kt │ │ │ │ └── ShareProductDetails.kt │ │ │ │ └── shares │ │ │ │ ├── AccountingRule.kt │ │ │ │ ├── Currency.kt │ │ │ │ ├── LockPeriodTypeEnum.kt │ │ │ │ ├── MinimumActivePeriodForDividendsTypeEnum.kt │ │ │ │ └── ShareProduct.kt │ │ │ └── enums │ │ │ ├── AboutUsListItemId.kt │ │ │ ├── AccountType.kt │ │ │ ├── AppTheme.kt │ │ │ ├── BeneficiaryState.kt │ │ │ ├── BiometricCapability.kt │ │ │ ├── ChargeType.kt │ │ │ ├── GuarantorState.kt │ │ │ ├── LoanState.kt │ │ │ ├── MifosAppLanguage.kt │ │ │ ├── RequestAccessType.kt │ │ │ ├── SavingsAccountState.kt │ │ │ └── TransferType.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── model │ │ │ └── Parcelize.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── model │ │ │ └── Parcelize.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── model │ │ │ └── Parcelize.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── model │ │ └── Parcelize.wasmJs.kt ├── network │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── network │ │ │ └── KtorHttpClient.android.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── network │ │ │ ├── DataManager.kt │ │ │ ├── KtorHttpClient.kt │ │ │ ├── KtorfitClient.kt │ │ │ ├── di │ │ │ ├── NetworkModule.kt │ │ │ └── Qualifier.kt │ │ │ ├── services │ │ │ ├── AuthenticationService.kt │ │ │ ├── BeneficiaryService.kt │ │ │ ├── ClientChargeService.kt │ │ │ ├── ClientService.kt │ │ │ ├── GuarantorService.kt │ │ │ ├── LoanAccountsListService.kt │ │ │ ├── NotificationService.kt │ │ │ ├── RecentTransactionsService.kt │ │ │ ├── RegistrationService.kt │ │ │ ├── SavingAccountsListService.kt │ │ │ ├── ShareAccountService.kt │ │ │ ├── ThirdPartyTransferService.kt │ │ │ └── UserDetailsService.kt │ │ │ └── utils │ │ │ ├── ApiEndPoints.kt │ │ │ ├── BaseURL.kt │ │ │ ├── FlowConverterFactory.kt │ │ │ └── KtorInterceptor.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── network │ │ │ └── KtorHttpClient.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── network │ │ │ └── KtorHttpClient.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── network │ │ │ └── KtorHttpClient.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── network │ │ └── KtorHttpClient.wasmJs.kt ├── qrcode │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── qr │ │ │ ├── CameraPermissionState.android.kt │ │ │ ├── CameraView.kt │ │ │ ├── QrCodeAnalyzer.kt │ │ │ ├── QrCodeGenerator.android.kt │ │ │ ├── QrCodeScanner.android.kt │ │ │ └── Utils.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── qr │ │ │ ├── CameraPermissionState.kt │ │ │ ├── CodeType.kt │ │ │ ├── QrCodeGenerator.kt │ │ │ └── QrCodeScanner.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── qr │ │ │ ├── CameraPermissionState.desktop.kt │ │ │ ├── QrCodeGenerator.desktop.kt │ │ │ └── QrCodeScanner.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── qr │ │ │ ├── CameraPermissionState.js.kt │ │ │ ├── QrCodeGenerator.js.kt │ │ │ └── QrCodeScanner.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── core │ │ │ └── qr │ │ │ ├── CameraPermissionState.native.kt │ │ │ ├── CameraView.kt │ │ │ ├── OrientationListener.kt │ │ │ ├── QrCodeGenerator.native.kt │ │ │ ├── QrCodeScanner.native.kt │ │ │ └── Utils.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── qr │ │ ├── CameraPermissionState.wasmJs.kt │ │ ├── QrCodeGenerator.wasmJs.kt │ │ └── QrCodeScanner.wasmJs.kt └── ui │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ ├── androidMain │ ├── AndroidManifest.xml │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── ui │ │ └── utils │ │ ├── ImageUtil.android.kt │ │ └── ShareUtils.android.kt │ ├── commonMain │ ├── composeResources │ │ ├── drawable │ │ │ ├── core_ui_money_in.png │ │ │ ├── ic_icon_dashboard.png │ │ │ ├── ic_icon_error.xml │ │ │ ├── ic_icon_logo_1.xml │ │ │ ├── ic_icon_powered_logo.xml │ │ │ └── ic_icon_success.xml │ │ ├── files │ │ │ └── loading_animation.json │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── ui │ │ ├── NavGraphBuilderExtension.kt │ │ ├── PasswordStrengthIndicator.kt │ │ ├── Transistion.kt │ │ ├── component │ │ ├── AboutUsItemCard.kt │ │ ├── BeneficiariesListing.kt │ │ ├── BeneficiaryCard.kt │ │ ├── EmptyDataView.kt │ │ ├── FaqItemHolder.kt │ │ ├── FiterTopSection.kt │ │ ├── MFStepProcess.kt │ │ ├── MifosAccountCard.kt │ │ ├── MifosActionCard.kt │ │ ├── MifosAlertDialog.kt │ │ ├── MifosCheckBox.kt │ │ ├── MifosDashboardCard.kt │ │ ├── MifosDetailsCard.kt │ │ ├── MifosDropDownPayFromComponent.kt │ │ ├── MifosDropDownTextField.kt │ │ ├── MifosErrorComponent.kt │ │ ├── MifosHiddenTextRow.kt │ │ ├── MifosItemCard.kt │ │ ├── MifosLabelValueCard.kt │ │ ├── MifosLinkText.kt │ │ ├── MifosMobileIcon.kt │ │ ├── MifosOutlineDropDown.kt │ │ ├── MifosPoweredCard.kt │ │ ├── MifosProgressIndicator.kt │ │ ├── MifosRadioButtonAlertDialog.kt │ │ ├── MifosRoundIcon.kt │ │ ├── MifosStatusComponent.kt │ │ ├── MifosSuccessDialog.kt │ │ ├── MifosTextButtonWithTopDrawable.kt │ │ ├── MifosTextUserImage.kt │ │ ├── MifosTexts.kt │ │ ├── MifosTitleSearchCard.kt │ │ ├── MifosUserImage.kt │ │ ├── MonitorListItemWithIcon.kt │ │ ├── NoInternet.kt │ │ ├── TransactionScreenItem.kt │ │ └── UserProfileField.kt │ │ ├── di │ │ └── NavigatorModule.kt │ │ ├── navigation │ │ ├── MifosBottomBar.kt │ │ ├── MifosNavigationBarItem.kt │ │ ├── MifosNavigationRail.kt │ │ ├── MifosNavigationRailItem.kt │ │ └── NavigationItem.kt │ │ └── utils │ │ ├── BackgroundEvent.kt │ │ ├── BaseViewModel.kt │ │ ├── DefaultResultNavigator.kt │ │ ├── DevicePreview.kt │ │ ├── EventsEffect.kt │ │ ├── ImageUtil.kt │ │ ├── LottieConstants.kt │ │ ├── NetworkBannerStatus.kt │ │ ├── PasswordChecker.kt │ │ ├── PasswordStrength.kt │ │ ├── PasswordStrengthExtensions.kt │ │ ├── PresentOrFutureSelectableDates.kt │ │ ├── ResultNavigator.kt │ │ ├── ScreenUiState.kt │ │ ├── ShareUtils.kt │ │ └── ValidationHelper.kt │ ├── desktopMain │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── ui │ │ └── utils │ │ ├── ImageUtil.desktop.kt │ │ └── ShareUtils.desktop.kt │ ├── jsMain │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── ui │ │ └── utils │ │ ├── ImageUtil.js.kt │ │ └── ShareUtils.js.kt │ ├── nativeMain │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── core │ │ └── ui │ │ └── utils │ │ ├── ImageUtil.native.kt │ │ └── ShareUtils.native.kt │ └── wasmJsMain │ └── kotlin │ └── org │ └── mifos │ └── mobile │ └── core │ └── ui │ └── utils │ ├── ImageUtil.wasmJs.kt │ └── ShareUtils.wasmJs.kt ├── docs └── images │ └── graphs │ ├── dep_graph_androidApp.svg │ ├── dep_graph_core_common.svg │ ├── dep_graph_core_data.svg │ ├── dep_graph_core_database.svg │ ├── dep_graph_core_datastore.svg │ ├── dep_graph_core_designsystem.svg │ ├── dep_graph_core_logs.svg │ ├── dep_graph_core_model.svg │ ├── dep_graph_core_network.svg │ ├── dep_graph_core_qrcode.svg │ ├── dep_graph_core_testing.svg │ ├── dep_graph_core_ui.svg │ ├── dep_graph_feature_about.svg │ ├── dep_graph_feature_account.svg │ ├── dep_graph_feature_auth.svg │ ├── dep_graph_feature_beneficiary.svg │ ├── dep_graph_feature_client_charge.svg │ ├── dep_graph_feature_guarantor.svg │ ├── dep_graph_feature_help.svg │ ├── dep_graph_feature_home.svg │ ├── dep_graph_feature_loan.svg │ ├── dep_graph_feature_location.svg │ ├── dep_graph_feature_notification.svg │ ├── dep_graph_feature_qr.svg │ ├── dep_graph_feature_recent_transaction.svg │ ├── dep_graph_feature_savings.svg │ ├── dep_graph_feature_settings.svg │ ├── dep_graph_feature_third_party_transfer.svg │ ├── dep_graph_feature_transfer_process.svg │ ├── dep_graph_feature_update_password.svg │ ├── dep_graph_feature_user_profile.svg │ ├── dep_graph_libs_country_code_picker.svg │ ├── dep_graph_libs_material3_navigation.svg │ ├── dep_graph_libs_mifos_passcode.svg │ ├── dep_graph_libs_pullrefresh.svg │ └── dep_graph_shared.svg ├── fastlane-config ├── android_config.rb └── ios_config.rb ├── fastlane ├── AppFile ├── FastFile ├── PluginFile ├── Pluginfile ├── README.md ├── age_rating.json ├── app_privacy_details.json ├── config │ └── config_helpers.rb ├── metadata │ ├── android │ │ └── en-US │ │ │ ├── changelogs │ │ │ ├── 1.txt │ │ │ └── default.txt │ │ │ ├── full_description.txt │ │ │ ├── images │ │ │ ├── featureGraphic.png │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 1_en-US.png │ │ │ │ ├── 2_en-US.png │ │ │ │ ├── 3_en-US.png │ │ │ │ ├── 4_en-US.png │ │ │ │ ├── 5_en-US.png │ │ │ │ ├── 6_en-US.png │ │ │ │ ├── 7_en-US.png │ │ │ │ └── 8_en-US.png │ │ │ ├── short_description.txt │ │ │ ├── title.txt │ │ │ └── video.txt │ └── ios │ │ ├── copyright.txt │ │ ├── en-US │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ │ ├── primary_category.txt │ │ ├── primary_first_sub_category.txt │ │ ├── primary_second_sub_category.txt │ │ ├── review_information │ │ ├── demo_password.txt │ │ ├── demo_user.txt │ │ ├── email_address.txt │ │ ├── first_name.txt │ │ ├── last_name.txt │ │ ├── notes.txt │ │ └── phone_number.txt │ │ ├── secondary_category.txt │ │ ├── secondary_first_sub_category.txt │ │ └── secondary_second_sub_category.txt ├── screenshots_ios │ └── en-US │ │ ├── 0_APP_IPAD_PRO_3GEN_129_0.png │ │ ├── 0_APP_IPHONE_65_0.png │ │ ├── 1_APP_IPAD_PRO_3GEN_129_1.png │ │ ├── 1_APP_IPHONE_65_1.png │ │ ├── 2_APP_IPAD_PRO_3GEN_129_2.png │ │ ├── 2_APP_IPHONE_65_2.png │ │ ├── 3_APP_IPAD_PRO_3GEN_129_3.png │ │ ├── 3_APP_IPHONE_65_3.png │ │ ├── 4_APP_IPAD_PRO_3GEN_129_4.png │ │ └── 4_APP_IPHONE_65_4.png └── screenshots_macos │ └── en-US │ ├── 0_APP_DESKTOP_0.png │ ├── 1_APP_DESKTOP_1.png │ ├── 2_APP_DESKTOP_2.png │ ├── 3_APP_DESKTOP_3.png │ └── 4_APP_DESKTOP_4.png ├── feature ├── accounts │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── accounts │ │ ├── accountTransactions │ │ ├── AccountsTransactionNavigation.kt │ │ ├── TransactionScreen.kt │ │ └── TransactionViewModel.kt │ │ ├── accounts │ │ ├── AccountNavigation.kt │ │ ├── AccountsScreen.kt │ │ └── AccountsViewModel.kt │ │ ├── component │ │ └── FilterSection.kt │ │ ├── di │ │ └── AccountsModule.kt │ │ ├── model │ │ └── CheckboxStatus.kt │ │ └── utils │ │ └── StatusUtils.kt ├── auth │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── AndroidManifest.xml │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ ├── feature_auth_ic_person.xml │ │ │ ├── feature_auth_lock.xml │ │ │ └── feature_auth_mifos_logo.png │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── auth │ │ ├── di │ │ └── AuthModule.kt │ │ ├── login │ │ ├── LogInNavigation.kt │ │ ├── LoginScreen.kt │ │ └── LoginViewModel.kt │ │ ├── navigation │ │ └── AuthenticationNavGraph.kt │ │ ├── otpAuthentication │ │ ├── OtpAuthenticationNavigation.kt │ │ ├── OtpAuthenticationScreen.kt │ │ └── OtpAuthenticationViewModel.kt │ │ ├── recoverPassword │ │ ├── RecoverPasswordNavigation.kt │ │ ├── RecoverPasswordScreen.kt │ │ └── RecoverPasswordViewModel.kt │ │ ├── registration │ │ ├── RegistrationNavigation.kt │ │ ├── RegistrationScreen.kt │ │ └── RegistrationViewModel.kt │ │ ├── setNewPassword │ │ ├── SetPasswordNavigation.kt │ │ ├── SetPasswordScreen.kt │ │ └── SetPasswordViewModel.kt │ │ └── uploadId │ │ ├── UploadDocumentsSection.kt │ │ ├── UploadIdNavigation.kt │ │ ├── UploadIdScreen.kt │ │ └── UploadIdViewmodel.kt ├── beneficiary │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ ├── ic_add_white_24dp.xml │ │ │ ├── ic_beneficiary_add_48px.xml │ │ │ ├── ic_error_black_24dp.xml │ │ │ ├── ic_file_upload_black_24dp.xml │ │ │ └── ic_qrcode_scan_gray_dark.xml │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── beneficiary │ │ ├── beneficiaryApplication │ │ ├── BeneficiaryApplicationContent.kt │ │ ├── BeneficiaryApplicationNavRoute.kt │ │ ├── BeneficiaryApplicationScreen.kt │ │ └── BeneficiaryApplicationViewModel.kt │ │ ├── beneficiaryApplicationConfirmation │ │ ├── BeneficiaryApplicationConfirmationNavigation.kt │ │ ├── BeneficiaryApplicationConfirmationScreen.kt │ │ └── BeneficiaryApplicationConfirmationViewModel.kt │ │ ├── beneficiaryDetail │ │ ├── BeneficiaryDetailContent.kt │ │ ├── BeneficiaryDetailScreen.kt │ │ ├── BeneficiaryDetailViewModel.kt │ │ └── BeneficiaryNavRoute.kt │ │ ├── beneficiaryList │ │ ├── BeneficiaryListNavigation.kt │ │ ├── BeneficiaryListScreen.kt │ │ └── BeneficiaryListViewModel.kt │ │ ├── di │ │ └── BeneficiaryModule.kt │ │ └── navigation │ │ └── BeneficiaryNavRoute.kt ├── client-charge │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ ├── database_checkmark.xml │ │ │ └── database_warning.xml │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── charge │ │ ├── chargeDetails │ │ ├── ChargeDetailScreen.kt │ │ ├── ChargeDetailsRoute.kt │ │ └── ChargeDetailsViewModel.kt │ │ ├── charges │ │ ├── ClientChargeRoute.kt │ │ ├── ClientChargeScreen.kt │ │ └── ClientChargeViewModel.kt │ │ ├── components │ │ └── ClientChargeItem.kt │ │ ├── di │ │ └── ChargeModule.kt │ │ └── navigation │ │ └── ClientChargesNavGraph.kt ├── guarantor │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── guarantor │ │ ├── di │ │ └── GuarantorModule.kt │ │ ├── navigation │ │ ├── GuarantorNavGraph.kt │ │ └── GuarantorNavigation.kt │ │ └── screens │ │ ├── guarantorAdd │ │ ├── AddGuarantorScreen.kt │ │ └── AddGuarantorViewModel.kt │ │ ├── guarantorDetails │ │ ├── GuarantorDetailContent.kt │ │ ├── GuarantorDetailScreen.kt │ │ └── GuarantorDetailViewModel.kt │ │ └── guarantorList │ │ ├── GuarantorListScreen.kt │ │ └── GuarantorListViewModel.kt ├── home │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ ├── ic_about_us_black_24dp.xml │ │ │ ├── ic_account_balance_black_24dp.xml │ │ │ ├── ic_account_balance_wallet_black_24dp.xml │ │ │ ├── ic_beneficiaries_48px.xml │ │ │ ├── ic_charges.xml │ │ │ ├── ic_compare_arrows_black_24dp.xml │ │ │ ├── ic_error_black_24dp.xml │ │ │ ├── ic_help_black_24dp.xml │ │ │ ├── ic_info_black_24dp.xml │ │ │ ├── ic_label_black_24dp.xml │ │ │ ├── ic_loan.xml │ │ │ ├── ic_logout.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_share_black_24dp.xml │ │ │ ├── ic_surveys_48px.xml │ │ │ ├── ic_visibility_24px.xml │ │ │ └── ic_visibility_off_24px.xml │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-bn │ │ │ └── strings.xml │ │ ├── values-es │ │ │ └── strings.xml │ │ ├── values-fa │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-id │ │ │ └── strings.xml │ │ ├── values-km │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-my │ │ │ └── strings.xml │ │ ├── values-pl │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-ru │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ ├── values-te │ │ │ └── strings.xml │ │ ├── values-ur │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── home │ │ ├── HomeScreen.kt │ │ ├── HomeViewModel.kt │ │ ├── ServiceItem.kt │ │ ├── components │ │ └── BottomSheetContent.kt │ │ ├── di │ │ └── HomeModule.kt │ │ └── navigation │ │ └── HomeNavigation.kt ├── loan-account │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ └── feature_account_error_black.xml │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── loanaccount │ │ ├── component │ │ ├── AccountSummaryCard.kt │ │ ├── LoanActionItems.kt │ │ └── RepaymentPeriodCard.kt │ │ ├── di │ │ └── LoanModule.kt │ │ ├── loanAccount │ │ ├── LoanAccountNavigation.kt │ │ ├── LoanAccountScreen.kt │ │ └── LoanAccountViewModel.kt │ │ ├── loanAccountDetails │ │ ├── LoanAccountDetailsNavigation.kt │ │ ├── LoanAccountDetailsScreen.kt │ │ └── LoanAccountDetailsViewModel.kt │ │ ├── loanAccountRepaymentSchedule │ │ ├── RepaymentScheduleRoute.kt │ │ ├── RepaymentScheduleScreen.kt │ │ └── RepaymentScheduleViewModel.kt │ │ ├── loanAccountSummary │ │ ├── AccountSummaryRoute.kt │ │ ├── AccountSummaryScreen.kt │ │ └── AccountSummaryViewModel.kt │ │ ├── navigation │ │ └── LoanNavigation.kt │ │ └── utils │ │ └── FilterUtil.kt ├── loan-application │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── loan │ │ └── application │ │ ├── component │ │ ├── ApplyLoanBottomBar.kt │ │ ├── ConfirmDetailsCard.kt │ │ ├── DocumentType.kt │ │ ├── LoanCard.kt │ │ ├── SignatureUploadType.kt │ │ ├── TermsAndConditionItem.kt │ │ └── UploadDocsSection.kt │ │ ├── confirmDetails │ │ ├── ConfirmDetailsRoute.kt │ │ ├── ConfirmDetailsScreen.kt │ │ └── ConfirmDetailsViewModel.kt │ │ ├── di │ │ └── LoanApplicationModule.kt │ │ ├── loanApplication │ │ ├── LoanApplyRoute.kt │ │ ├── LoanApplyScreen.kt │ │ └── LoanApplyViewModel.kt │ │ ├── loanProductDescription │ │ ├── LoanProductDetailsRoute.kt │ │ ├── LoanProductDetailsScren.kt │ │ └── LoanProductDetailsViewModel.kt │ │ ├── loanType │ │ ├── SelectLoanTypeRoute.kt │ │ ├── SelectLoanTypeSceen.kt │ │ └── SelectLoanTypeViewModel.kt │ │ ├── navigation │ │ └── LoanApplicationNavGraph.kt │ │ └── uploadDocs │ │ ├── UploadDocsRoute.kt │ │ ├── UploadDocsScreen.kt │ │ ├── UploadDocsViewmodel.kt │ │ └── component │ │ └── BottomSheetContent.kt ├── location │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── org │ │ │ │ └── mifos │ │ │ │ └── mobile │ │ │ │ └── feature │ │ │ │ └── location │ │ │ │ └── LocationScreen.android.kt │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── commonMain │ │ ├── composeResources │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── location │ │ │ ├── LocationScreen.kt │ │ │ └── navigation │ │ │ ├── LocationNavGraph.kt │ │ │ └── LocationNavigation.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── location │ │ │ └── LocationScreen.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── location │ │ │ └── LocationScreen.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── location │ │ │ └── LocationScreen.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── location │ │ └── LocationScreen.wasmJs.kt ├── notification │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── AndroidManifest.xml │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ └── ic_notifications.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── notification │ │ ├── NotificationScreen.kt │ │ ├── NotificationViewModel.kt │ │ ├── di │ │ └── NotificationModule.kt │ │ └── navigation │ │ └── NotificationNavigation.kt ├── onboarding-language │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── progaurd-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── onboarding │ │ └── language │ │ ├── SetOnboardingLanguageScreen.kt │ │ ├── SetOnboardingLanguageViewModel.kt │ │ ├── di │ │ └── SetOnboardingLanguageModule.kt │ │ └── navigation │ │ └── SetOnboardLanguageNavigation.kt ├── passcode │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── passcode │ │ ├── PasscodeScreen.kt │ │ ├── PasscodeViewModel.kt │ │ ├── di │ │ └── PasscodeModule.kt │ │ ├── navigation │ │ └── PasscodeNavigation.kt │ │ └── verifyPasscode │ │ ├── VerifyPasscodeNavigation.kt │ │ ├── VerifyPasscodeScreen.kt │ │ └── VerifyPasscodeViewModel.kt ├── qr │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── qr │ │ │ ├── CropContent.kt │ │ │ ├── Dialogs.kt │ │ │ ├── ImagePicker.kt │ │ │ └── qrCodeImport │ │ │ └── QrCodeImportScreen.android.kt │ │ ├── commonMain │ │ ├── composeResources │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-en │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ │ └── strings.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── qr │ │ │ ├── di │ │ │ └── QrModule.kt │ │ │ ├── navigation │ │ │ └── QrNavGraph.kt │ │ │ ├── qr │ │ │ ├── QrCodeReaderRoute.kt │ │ │ ├── QrCodeReaderScreen.kt │ │ │ └── QrCodeReaderViewModel.kt │ │ │ ├── qrCodeDisplay │ │ │ ├── QrCodeDisplayRoute.kt │ │ │ ├── QrCodeDisplayScreen.kt │ │ │ └── QrCodeDisplayViewModel.kt │ │ │ └── qrCodeImport │ │ │ ├── QrCodeImportRoute.kt │ │ │ ├── QrCodeImportScreen.kt │ │ │ └── QrCodeImportViewModel.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── qr │ │ │ └── qrCodeImport │ │ │ └── QrCodeImportScreen.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── qr │ │ │ └── qrCodeImport │ │ │ └── QrCodeImportScreen.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── qr │ │ │ └── qrCodeImport │ │ │ └── QrCodeImportScreen.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── qr │ │ └── qrCodeImport │ │ └── QrCodeImportScreen.wasmJs.kt ├── recent-transaction │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ └── AndroidManifest.xml │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ ├── ic_error_black_24dp.xml │ │ │ └── ic_local_atm_black_24dp.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── recent │ │ └── transaction │ │ ├── di │ │ └── RecentTransactionModule.kt │ │ ├── navigation │ │ ├── RecentTransactionNavGraph.kt │ │ └── RecentTransactionNavigation.kt │ │ ├── screen │ │ └── RecentTransactionScreen.kt │ │ ├── utils │ │ └── RecentTransactionState.kt │ │ └── viewmodel │ │ └── RecentTransactionViewModel.kt ├── savings-account │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ └── feature_account_error_black.xml │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-en │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-kn │ │ │ └── strings.xml │ │ ├── values-ml │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-ms │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-si │ │ │ └── strings.xml │ │ ├── values-sw │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── savingsaccount │ │ ├── components │ │ └── SavingsActionItems.kt │ │ ├── di │ │ └── SavingsAccountModule.kt │ │ ├── navigation │ │ └── SavingsNavigation.kt │ │ ├── savingsAccount │ │ ├── SavingsAccountNavigation.kt │ │ ├── SavingsAccountScreen.kt │ │ └── SavingsAccountViewmodel.kt │ │ ├── savingsAccountDetails │ │ ├── SavingsAccountDetailsNavigation.kt │ │ ├── SavingsAccountDetailsScreen.kt │ │ └── SavingsAccountDetailsViewModel.kt │ │ ├── savingsAccountUpdate │ │ ├── AccountUpdateNavigation.kt │ │ ├── AccountUpdateScreen.kt │ │ └── AccountUpdateViewModel.kt │ │ ├── savingsAccountWithdraw │ │ ├── AccountWithdrawNavigation.kt │ │ ├── AccountWithdrawScreen.kt │ │ └── AccountWithdrawViewModel.kt │ │ └── utils │ │ └── FilterUtil.kt ├── savings-application │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── savings │ │ └── application │ │ ├── di │ │ └── SavingsApplicationModule.kt │ │ ├── fillApplication │ │ ├── FillApplicationRoute.kt │ │ ├── FillApplicationScreen.kt │ │ └── FillApplicationViewModel.kt │ │ ├── navigation │ │ └── SavingsApplicationNavGraph.kt │ │ └── savingsApplication │ │ ├── SavingsApplyRoute.kt │ │ ├── SavingsApplyScreen.kt │ │ └── SavingsApplyViewModel.kt ├── settings │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidMain │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── settings │ │ │ └── util │ │ │ └── AppVersion.android.kt │ │ ├── commonMain │ │ ├── composeResources │ │ │ ├── drawable │ │ │ │ ├── ic_baseline_dark_mode_24.xml │ │ │ │ ├── ic_help_mail.xml │ │ │ │ ├── ic_help_mobile.xml │ │ │ │ ├── ic_icon_money_transfer.xml │ │ │ │ ├── ic_lock_black_24dp.xml │ │ │ │ ├── ic_passcode.xml │ │ │ │ ├── ic_translate.xml │ │ │ │ ├── ic_update.xml │ │ │ │ ├── mifo_app_info_icon.png │ │ │ │ └── mifos_icon.png │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-en │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ │ └── strings.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── settings │ │ │ ├── about │ │ │ ├── AboutNavigation.kt │ │ │ └── AboutScreen.kt │ │ │ ├── appInfo │ │ │ ├── AppInfoNavigation.kt │ │ │ └── AppInfoScreen.kt │ │ │ ├── componenets │ │ │ ├── MifosLogoutDilaog.kt │ │ │ └── SettingsItems.kt │ │ │ ├── di │ │ │ └── SettingsModule.kt │ │ │ ├── faq │ │ │ ├── FaqNavigation.kt │ │ │ ├── FaqScreen.kt │ │ │ └── FaqViewmodel.kt │ │ │ ├── help │ │ │ ├── HelpNavigation.kt │ │ │ └── HelpScreen.kt │ │ │ ├── language │ │ │ ├── LanguageRoute.kt │ │ │ ├── LanguageScreen.kt │ │ │ └── LanguageViewModel.kt │ │ │ ├── navigation │ │ │ └── SettingsNavGraphRoute.kt │ │ │ ├── passcode │ │ │ ├── UpdatePasscodeNavigation.kt │ │ │ ├── UpdatePasscodeScreen.kt │ │ │ └── UpdatePasscodeViewModel.kt │ │ │ ├── password │ │ │ ├── ChangePasswordNavigation.kt │ │ │ ├── ChangePasswordScreen.kt │ │ │ └── ChangePasswordViewModel.kt │ │ │ ├── settings │ │ │ ├── SettingsRoute.kt │ │ │ ├── SettingsScreen.kt │ │ │ └── SettingsViewModel.kt │ │ │ ├── theme │ │ │ ├── ChangeThemeRoute.kt │ │ │ ├── ChangeThemeScreen.kt │ │ │ └── ChangeThemeViewModel.kt │ │ │ └── util │ │ │ └── AppVersion.kt │ │ ├── desktopMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── settings │ │ │ └── util │ │ │ └── AppVersion.desktop.kt │ │ ├── jsMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── settings │ │ │ └── util │ │ │ └── AppVersion.js.kt │ │ ├── nativeMain │ │ └── kotlin │ │ │ └── org │ │ │ └── mifos │ │ │ └── mobile │ │ │ └── feature │ │ │ └── settings │ │ │ └── util │ │ │ └── AppVersion.native.kt │ │ └── wasmJsMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── settings │ │ └── util │ │ └── AppVersion.wasmJs.kt ├── share-account │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ └── feature_account_error_black.xml │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── shareaccount │ │ ├── di │ │ └── ShareAccountModule.kt │ │ ├── shareAccount │ │ ├── ShareAccountRoute.kt │ │ ├── ShareAccountScreen.kt │ │ └── ShareAccountViewModel.kt │ │ └── utils │ │ └── FilterUtil.kt ├── share-application │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── share │ │ └── application │ │ ├── di │ │ └── ShareApplicationModule.kt │ │ ├── fillApplication │ │ ├── FillApplicationRoute.kt │ │ ├── FillApplicationScreen.kt │ │ └── FillApplicationViewModel.kt │ │ ├── navigation │ │ └── ShareApplicationNavGraph.kt │ │ └── shareApplication │ │ ├── ShareApplyRoute.kt │ │ ├── ShareApplyScreen.kt │ │ └── ShareApplyViewModel.kt ├── status │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── status │ │ ├── Components.kt │ │ ├── StatusViewModel.kt │ │ ├── di │ │ └── StatusModule.kt │ │ └── navigation │ │ └── StatusNavigation.kt ├── third-party-transfer │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── commonMain │ │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── mobile │ │ └── feature │ │ └── third │ │ └── party │ │ └── transfer │ │ ├── di │ │ └── ThirdPartyTransferModule.kt │ │ ├── navigation │ │ └── ThirdPartyTransferRoute.kt │ │ └── thirdPartyTransfer │ │ ├── TptScreen.kt │ │ ├── TptScreenRoute.kt │ │ └── TptViewModel.kt └── transfer-process │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ └── commonMain │ ├── composeResources │ └── values │ │ └── strings.xml │ └── kotlin │ └── org │ └── mifos │ └── mobile │ └── feature │ └── transfer │ └── process │ ├── di │ └── TransferProcessModule.kt │ ├── makeTransfer │ ├── MakeTransferNavigation.kt │ ├── MakeTransferScreen.kt │ └── MakeTransferViewModel.kt │ └── transferProcess │ ├── TransferProcessNavGraph.kt │ ├── TransferProcessScreen.kt │ └── TransferProcessViewModel.kt ├── generateModuleGraphs.sh ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystore-manager.sh ├── keystores └── release_keystore.keystore ├── kotlin-js-store └── yarn.lock ├── libs ├── country-code-picker │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── com │ │ │ └── mifos │ │ │ └── library │ │ │ └── countrycodepicker │ │ │ ├── CountryCodePicker.kt │ │ │ ├── component │ │ │ ├── Autofill.kt │ │ │ ├── CountryCodeDialog.kt │ │ │ └── CountryDialog.kt │ │ │ ├── data │ │ │ ├── CountryData.kt │ │ │ └── utils │ │ │ │ ├── CountryCodeUtils.kt │ │ │ │ ├── CountryNameMap.kt │ │ │ │ ├── NumberHintMap.kt │ │ │ │ ├── SearchCountryList.kt │ │ │ │ └── ValidatePhoneNumber.kt │ │ │ └── transformation │ │ │ └── PhoneNumberTransformation.kt │ │ └── res │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-so │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ └── strings.xml ├── material3-navigation │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── mifos │ │ └── library │ │ └── material3 │ │ └── navigation │ │ ├── BottomSheet.kt │ │ ├── BottomSheetNavigator.kt │ │ ├── BottomSheetNavigatorDestinationBuilder.kt │ │ └── NavGraphBuilder.kt ├── mifos-passcode │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── AndroidManifest.xml │ │ └── commonMain │ │ ├── composeResources │ │ ├── drawable │ │ │ └── lib_mifos_passcode_mifos_logo.jpg │ │ ├── font │ │ │ ├── lib_mifos_passcode_lato_black.ttf │ │ │ ├── lib_mifos_passcode_lato_bold.ttf │ │ │ └── lib_mifos_passcode_lato_regular.ttf │ │ └── values │ │ │ └── strings.xml │ │ └── kotlin │ │ └── org │ │ └── mifos │ │ └── library │ │ └── passcode │ │ ├── PassCodeScreen.kt │ │ ├── PasscodeNavigation.kt │ │ ├── component │ │ ├── MifosIcon.kt │ │ ├── PasscodeButton.kt │ │ ├── PasscodeHeader.kt │ │ ├── PasscodeKeys.kt │ │ ├── PasscodeMismatchedDialog.kt │ │ ├── PasscodeStepIndicator.kt │ │ └── PasscodeToolbar.kt │ │ ├── data │ │ ├── PasscodeManager.kt │ │ └── PasscodePreferencesDataSource.kt │ │ ├── di │ │ ├── PasscodeModule.kt │ │ └── PasscodePreferenceModule.kt │ │ ├── model │ │ └── PasscodePreferencesProto.kt │ │ ├── theme │ │ ├── Color.kt │ │ ├── Font.kt │ │ ├── Theme.kt │ │ └── Type.kt │ │ ├── utility │ │ ├── Constants.kt │ │ ├── ShakeAnimation.kt │ │ └── Step.kt │ │ └── viewmodels │ │ └── PasscodeViewModel.kt └── pullrefresh │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com.mifos.library.pullrefresh │ ├── PullRefresh.kt │ ├── PullRefreshIndicator.kt │ ├── PullRefreshIndicatorTransform.kt │ └── PullRefreshState.kt ├── lint ├── .gitignore ├── build.gradle.kts ├── lint-baseline.xml └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── mifos │ │ │ └── mifospay │ │ │ └── lint │ │ │ ├── MifosIssueRegistry.kt │ │ │ ├── TestMethodNameDetector.kt │ │ │ ├── config │ │ │ └── Priorities.kt │ │ │ ├── designsystem │ │ │ ├── DesignSystemDetector.kt │ │ │ └── Material2Detector.kt │ │ │ └── util │ │ │ ├── LintOption.kt │ │ │ ├── LintUtils.kt │ │ │ ├── OptionLoadingDetector.kt │ │ │ └── StringSetLintOption.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ └── com.android.tools.lint.client.api.IssueRegistry │ └── test │ └── kotlin │ └── org │ └── mifos │ └── mifospay │ └── lint │ ├── TestMethodNameDetectorTest.kt │ └── designsystem │ └── DesignSystemDetectorTest.kt ├── scripts ├── pre-commit.sh └── pre-push.sh ├── secrets.env ├── settings.gradle.kts ├── spotless ├── copyright.kt ├── copyright.kts └── copyright.xml └── sync-dirs.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ci-gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/ci-gradle.properties -------------------------------------------------------------------------------- /.github/workflows/android-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/android-release.yml -------------------------------------------------------------------------------- /.github/workflows/monthly-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/monthly-release.yaml -------------------------------------------------------------------------------- /.github/workflows/multi-platform-build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/multi-platform-build-and-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/promote-to-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/promote-to-production.yml -------------------------------------------------------------------------------- /.github/workflows/tag-weekly-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/tag-weekly-release.yml -------------------------------------------------------------------------------- /.github/workflows/upload-demo-app-on-firebase-kmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.github/workflows/upload-demo-app-on-firebase-kmp.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.5 -------------------------------------------------------------------------------- /.run/cmp-desktop.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.run/cmp-desktop.run.xml -------------------------------------------------------------------------------- /.run/cmp-ios.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.run/cmp-ios.run.xml -------------------------------------------------------------------------------- /.run/cmp-web-js.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.run/cmp-web-js.run.xml -------------------------------------------------------------------------------- /.run/cmp-web-wasm.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/.run/cmp-web-wasm.run.xml -------------------------------------------------------------------------------- /AndroidStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/AndroidStyle.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/README.md -------------------------------------------------------------------------------- /ci-prepush.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/ci-prepush.bat -------------------------------------------------------------------------------- /ci-prepush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/ci-prepush.sh -------------------------------------------------------------------------------- /cmp-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /prod 3 | -------------------------------------------------------------------------------- /cmp-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/README.md -------------------------------------------------------------------------------- /cmp-android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/build.gradle.kts -------------------------------------------------------------------------------- /cmp-android/dependencies/demoDebugRuntimeClasspath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/dependencies/demoDebugRuntimeClasspath.txt -------------------------------------------------------------------------------- /cmp-android/dependencies/demoReleaseRuntimeClasspath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/dependencies/demoReleaseRuntimeClasspath.txt -------------------------------------------------------------------------------- /cmp-android/dependencies/prodDebugRuntimeClasspath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/dependencies/prodDebugRuntimeClasspath.txt -------------------------------------------------------------------------------- /cmp-android/dependencies/prodReleaseRuntimeClasspath.tree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/dependencies/prodReleaseRuntimeClasspath.tree.txt -------------------------------------------------------------------------------- /cmp-android/dependencies/prodReleaseRuntimeClasspath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/dependencies/prodReleaseRuntimeClasspath.txt -------------------------------------------------------------------------------- /cmp-android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/google-services.json -------------------------------------------------------------------------------- /cmp-android/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/lint-baseline.xml -------------------------------------------------------------------------------- /cmp-android/prodRelease-badging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/prodRelease-badging.txt -------------------------------------------------------------------------------- /cmp-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/proguard-rules.pro -------------------------------------------------------------------------------- /cmp-android/src/demo/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/ic_launcher-playstore.png -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/demo/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/demo/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /cmp-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /cmp-android/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /cmp-android/src/main/kotlin/cmp/android/app/AndroidApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/kotlin/cmp/android/app/AndroidApp.kt -------------------------------------------------------------------------------- /cmp-android/src/main/kotlin/cmp/android/app/ComponentActivityExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/kotlin/cmp/android/app/ComponentActivityExtensions.kt -------------------------------------------------------------------------------- /cmp-android/src/main/kotlin/cmp/android/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/kotlin/cmp/android/app/MainActivity.kt -------------------------------------------------------------------------------- /cmp-android/src/main/kotlin/cmp/android/app/util/UiExtenstions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/kotlin/cmp/android/app/util/UiExtenstions.kt -------------------------------------------------------------------------------- /cmp-android/src/main/res/drawable/mifos_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/drawable/mifos_logo.png -------------------------------------------------------------------------------- /cmp-android/src/main/res/drawable/mifos_splash_screen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/drawable/mifos_splash_screen_logo.png -------------------------------------------------------------------------------- /cmp-android/src/main/res/drawable/splash_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/drawable/splash_icon.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-hdpi/ic_laundher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-hdpi/ic_laundher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-mdpi/ic_laundher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-mdpi/ic_laundher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xhdpi/ic_laundher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xhdpi/ic_laundher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxhdpi/ic_laundher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxhdpi/ic_laundher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/mipmap-xxxhdpi/ic_laundher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/mipmap-xxxhdpi/ic_laundher_round.webp -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-fa-rAF/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-fa-rAF/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-km/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-km/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-night/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-night/splash.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values-ur/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values/splash.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /cmp-android/src/main/res/xml/fileproviderpath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-android/src/main/res/xml/fileproviderpath.xml -------------------------------------------------------------------------------- /cmp-desktop/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /cmp-desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/README.md -------------------------------------------------------------------------------- /cmp-desktop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/build.gradle.kts -------------------------------------------------------------------------------- /cmp-desktop/compose-desktop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/compose-desktop.pro -------------------------------------------------------------------------------- /cmp-desktop/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/entitlements.plist -------------------------------------------------------------------------------- /cmp-desktop/icons/ic_launcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/icons/ic_launcher.icns -------------------------------------------------------------------------------- /cmp-desktop/icons/ic_launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/icons/ic_launcher.ico -------------------------------------------------------------------------------- /cmp-desktop/icons/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/icons/ic_launcher.png -------------------------------------------------------------------------------- /cmp-desktop/runtime-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/runtime-entitlements.plist -------------------------------------------------------------------------------- /cmp-desktop/src/jvmMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-desktop/src/jvmMain/kotlin/main.kt -------------------------------------------------------------------------------- /cmp-ios/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /cmp-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/Podfile -------------------------------------------------------------------------------- /cmp-ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/Podfile.lock -------------------------------------------------------------------------------- /cmp-ios/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cmp-ios/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cmp-ios/iosApp.xcodeproj/xcshareddata/xcschemes/cmp-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp.xcodeproj/xcshareddata/xcschemes/cmp-ios.xcscheme -------------------------------------------------------------------------------- /cmp-ios/iosApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cmp-ios/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /cmp-ios/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /cmp-ios/iosApp/Assets.xcassets/AppIcon.appiconset/mifosmobile_logo_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Assets.xcassets/AppIcon.appiconset/mifosmobile_logo_1024.png -------------------------------------------------------------------------------- /cmp-ios/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /cmp-ios/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/ContentView.swift -------------------------------------------------------------------------------- /cmp-ios/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Info.plist -------------------------------------------------------------------------------- /cmp-ios/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /cmp-ios/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-ios/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /cmp-navigation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/build.gradle.kts -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/ComposeApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/ComposeApp.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/ComposeAppViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/ComposeAppViewModel.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/di/KoinModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/di/KoinModules.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/navigation/NavGraphRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/navigation/NavGraphRoute.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/rootnav/RootNavScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/rootnav/RootNavScreen.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/rootnav/RootNavViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/rootnav/RootNavViewModel.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/splash/SplashNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/splash/SplashNavigation.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/splash/SplashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/splash/SplashScreen.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/ui/MifosScaffold.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/ui/MifosScaffold.kt -------------------------------------------------------------------------------- /cmp-navigation/src/commonMain/kotlin/cmp/navigation/utils/RootUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-navigation/src/commonMain/kotlin/cmp/navigation/utils/RootUtils.kt -------------------------------------------------------------------------------- /cmp-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/README.md -------------------------------------------------------------------------------- /cmp-shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/build.gradle.kts -------------------------------------------------------------------------------- /cmp-shared/cmp_shared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/cmp_shared.podspec -------------------------------------------------------------------------------- /cmp-shared/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /cmp-shared/src/commonMain/kotlin/cmp/shared/SharedApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/src/commonMain/kotlin/cmp/shared/SharedApp.kt -------------------------------------------------------------------------------- /cmp-shared/src/commonMain/kotlin/cmp/shared/utils/KoinExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/src/commonMain/kotlin/cmp/shared/utils/KoinExt.kt -------------------------------------------------------------------------------- /cmp-shared/src/nativeMain/kotlin/org/mifos/shared/ViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-shared/src/nativeMain/kotlin/org/mifos/shared/ViewController.kt -------------------------------------------------------------------------------- /cmp-web/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /cmp-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/README.md -------------------------------------------------------------------------------- /cmp-web/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/build.gradle.kts -------------------------------------------------------------------------------- /cmp-web/src/jsMain/kotlin/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/jsMain/kotlin/Application.kt -------------------------------------------------------------------------------- /cmp-web/src/jsMain/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/jsMain/resources/favicon.ico -------------------------------------------------------------------------------- /cmp-web/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /cmp-web/src/jsMain/resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/jsMain/resources/styles.css -------------------------------------------------------------------------------- /cmp-web/src/wasmJsMain/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/wasmJsMain/kotlin/Main.kt -------------------------------------------------------------------------------- /cmp-web/src/wasmJsMain/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/wasmJsMain/resources/favicon.ico -------------------------------------------------------------------------------- /cmp-web/src/wasmJsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/wasmJsMain/resources/index.html -------------------------------------------------------------------------------- /cmp-web/src/webpack.config.d/cleanupSourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/cmp-web/src/webpack.config.d/cleanupSourcemap.js -------------------------------------------------------------------------------- /compose_compiler_config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/compose_compiler_config.conf -------------------------------------------------------------------------------- /config/detekt/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/config/detekt/detekt.yml -------------------------------------------------------------------------------- /config/quality/checkstyle/checkstyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/config/quality/checkstyle/checkstyle-config.xml -------------------------------------------------------------------------------- /config/quality/findbugs/android-exclude-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/config/quality/findbugs/android-exclude-filter.xml -------------------------------------------------------------------------------- /config/quality/pmd/pmd-ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/config/quality/pmd/pmd-ruleset.xml -------------------------------------------------------------------------------- /config/quality/quality.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/config/quality/quality.gradle -------------------------------------------------------------------------------- /core-base/analytics/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/analytics/README.md -------------------------------------------------------------------------------- /core-base/analytics/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/analytics/build.gradle.kts -------------------------------------------------------------------------------- /core-base/analytics/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core-base/analytics/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/analytics/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core-base/common/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/common/README.md: -------------------------------------------------------------------------------- 1 | # :core:common module 2 | -------------------------------------------------------------------------------- /core-base/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/common/build.gradle.kts -------------------------------------------------------------------------------- /core-base/common/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core-base/common/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/common/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core-base/common/src/commonMain/kotlin/template/core/base/common/DataState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/common/src/commonMain/kotlin/template/core/base/common/DataState.kt -------------------------------------------------------------------------------- /core-base/common/src/commonMain/kotlin/template/core/base/common/Parcelize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/common/src/commonMain/kotlin/template/core/base/common/Parcelize.kt -------------------------------------------------------------------------------- /core-base/database/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/database/README.md -------------------------------------------------------------------------------- /core-base/database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/database/build.gradle.kts -------------------------------------------------------------------------------- /core-base/database/src/commonMain/kotlin/template/core/base/database/Room.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/database/src/commonMain/kotlin/template/core/base/database/Room.kt -------------------------------------------------------------------------------- /core-base/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/datastore/README.md -------------------------------------------------------------------------------- /core-base/datastore/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/datastore/build.gradle.kts -------------------------------------------------------------------------------- /core-base/designsystem/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/designsystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/designsystem/README.md -------------------------------------------------------------------------------- /core-base/designsystem/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/designsystem/build.gradle.kts -------------------------------------------------------------------------------- /core-base/network/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/network/README.md -------------------------------------------------------------------------------- /core-base/network/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/network/build.gradle.kts -------------------------------------------------------------------------------- /core-base/platform/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/platform/README.md -------------------------------------------------------------------------------- /core-base/platform/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/platform/build.gradle.kts -------------------------------------------------------------------------------- /core-base/platform/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core-base/ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core-base/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/README.md -------------------------------------------------------------------------------- /core-base/ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/build.gradle.kts -------------------------------------------------------------------------------- /core-base/ui/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core-base/ui/src/androidMain/kotlin/template/core/base/ui/ShareUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/androidMain/kotlin/template/core/base/ui/ShareUtils.android.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/BackgroundEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/BackgroundEvent.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/BaseViewModel.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/EventsEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/EventsEffect.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/ImageLoaderExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/ImageLoaderExt.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/JankStatsExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/JankStatsExtension.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/ReportDrawnExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/ReportDrawnExt.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/ShareUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/ShareUtils.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/SharedElementExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/SharedElementExt.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/StringExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/StringExt.kt -------------------------------------------------------------------------------- /core-base/ui/src/commonMain/kotlin/template/core/base/ui/Transition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/commonMain/kotlin/template/core/base/ui/Transition.kt -------------------------------------------------------------------------------- /core-base/ui/src/desktopMain/java/template/core/base/ui/ShareUtils.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/desktopMain/java/template/core/base/ui/ShareUtils.desktop.kt -------------------------------------------------------------------------------- /core-base/ui/src/jsCommonMain/kotlin/template/core/base/ui/ShareUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/jsCommonMain/kotlin/template/core/base/ui/ShareUtils.kt -------------------------------------------------------------------------------- /core-base/ui/src/nativeMain/kotlin/template/core/base/ui/ShareUtils.native.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core-base/ui/src/nativeMain/kotlin/template/core/base/ui/ShareUtils.native.kt -------------------------------------------------------------------------------- /core/common/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/README.md -------------------------------------------------------------------------------- /core/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/build.gradle.kts -------------------------------------------------------------------------------- /core/common/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/common/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/proguard-rules.pro -------------------------------------------------------------------------------- /core/common/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/Constants.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DataState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DataState.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DateHelper.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/FileUtils.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/FormatAmount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/FormatAmount.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/SymbolsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/SymbolsUtils.kt -------------------------------------------------------------------------------- /core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/Utils.kt -------------------------------------------------------------------------------- /core/common/src/jsMain/kotlin/org/mifos/mobile/core/common/FileUtils.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/jsMain/kotlin/org/mifos/mobile/core/common/FileUtils.js.kt -------------------------------------------------------------------------------- /core/common/src/jsMain/kotlin/org/mifos/mobile/core/common/FormatAmount.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/common/src/jsMain/kotlin/org/mifos/mobile/core/common/FormatAmount.js.kt -------------------------------------------------------------------------------- /core/data/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/data/README.md -------------------------------------------------------------------------------- /core/data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/data/build.gradle.kts -------------------------------------------------------------------------------- /core/data/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/data/kotlin/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /core/data/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/data/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/mapper/Charge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/mapper/Charge.kt -------------------------------------------------------------------------------- /core/data/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline -------------------------------------------------------------------------------- /core/database/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/database/README.md -------------------------------------------------------------------------------- /core/database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/database/build.gradle.kts -------------------------------------------------------------------------------- /core/database/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/database/schemas/org.mifos.mobile.core.database.AppDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/database/schemas/org.mifos.mobile.core.database.AppDatabase/1.json -------------------------------------------------------------------------------- /core/database/src/commonMain/kotlin/org/mifos/mobile/core/database/Room.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/database/src/commonMain/kotlin/org/mifos/mobile/core/database/Room.kt -------------------------------------------------------------------------------- /core/datastore/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/datastore/README.md -------------------------------------------------------------------------------- /core/datastore/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/datastore/build.gradle.kts -------------------------------------------------------------------------------- /core/datastore/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/datastore/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/datastore/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core/designsystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/README.md -------------------------------------------------------------------------------- /core/designsystem/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/build.gradle.kts -------------------------------------------------------------------------------- /core/designsystem/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/designsystem/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/proguard-rules.pro -------------------------------------------------------------------------------- /core/designsystem/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_black.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_bold.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_extra_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_extra_bold.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_extra_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_extra_light.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_light.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_medium.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_regular.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_semi_bold.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/font/inter_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/font/inter_thin.ttf -------------------------------------------------------------------------------- /core/designsystem/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/designsystem/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /core/logs/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/README.md -------------------------------------------------------------------------------- /core/logs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/build.gradle.kts -------------------------------------------------------------------------------- /core/logs/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/logs/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/proguard-rules.pro -------------------------------------------------------------------------------- /core/logs/src/androidMain/kotlin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/src/androidMain/kotlin/AndroidManifest.xml -------------------------------------------------------------------------------- /core/logs/src/androidMain/kotlin/org/mifos/mobile/core/logs/AnalyticsEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/src/androidMain/kotlin/org/mifos/mobile/core/logs/AnalyticsEvent.kt -------------------------------------------------------------------------------- /core/logs/src/androidMain/kotlin/org/mifos/mobile/core/logs/AnalyticsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/logs/src/androidMain/kotlin/org/mifos/mobile/core/logs/AnalyticsHelper.kt -------------------------------------------------------------------------------- /core/model/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/README.md -------------------------------------------------------------------------------- /core/model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/build.gradle.kts -------------------------------------------------------------------------------- /core/model/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/consumer-rules.pro -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/AuthState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/AuthState.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/Country.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/Country.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/EventType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/EventType.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/LanguageConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/LanguageConfig.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/LoanStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/LoanStatus.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/Parcelize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/Parcelize.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/SavingStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/SavingStatus.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/UserData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/UserData.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Charge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Charge.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Currency.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/FAQ.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/FAQ.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Page.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Page.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Timeline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/Timeline.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/entity/User.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/enums/AppTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/enums/AppTheme.kt -------------------------------------------------------------------------------- /core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/enums/LoanState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/commonMain/kotlin/org/mifos/mobile/core/model/enums/LoanState.kt -------------------------------------------------------------------------------- /core/model/src/jsMain/kotlin/org/mifos/mobile/core/model/Parcelize.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/model/src/jsMain/kotlin/org/mifos/mobile/core/model/Parcelize.js.kt -------------------------------------------------------------------------------- /core/network/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/network/README.md -------------------------------------------------------------------------------- /core/network/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/network/build.gradle.kts -------------------------------------------------------------------------------- /core/network/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/network/consumer-rules.pro -------------------------------------------------------------------------------- /core/network/src/commonMain/kotlin/org/mifos/mobile/core/network/DataManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/network/src/commonMain/kotlin/org/mifos/mobile/core/network/DataManager.kt -------------------------------------------------------------------------------- /core/qrcode/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/qrcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/README.md -------------------------------------------------------------------------------- /core/qrcode/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/build.gradle.kts -------------------------------------------------------------------------------- /core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/CameraView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/CameraView.kt -------------------------------------------------------------------------------- /core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/QrCodeAnalyzer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/QrCodeAnalyzer.kt -------------------------------------------------------------------------------- /core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/androidMain/kotlin/org/mifos/mobile/core/qr/Utils.kt -------------------------------------------------------------------------------- /core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/CodeType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/CodeType.kt -------------------------------------------------------------------------------- /core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/QrCodeGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/QrCodeGenerator.kt -------------------------------------------------------------------------------- /core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/QrCodeScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/commonMain/kotlin/org/mifos/mobile/core/qr/QrCodeScanner.kt -------------------------------------------------------------------------------- /core/qrcode/src/jsMain/kotlin/org/mifos/mobile/core/qr/QrCodeGenerator.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/jsMain/kotlin/org/mifos/mobile/core/qr/QrCodeGenerator.js.kt -------------------------------------------------------------------------------- /core/qrcode/src/jsMain/kotlin/org/mifos/mobile/core/qr/QrCodeScanner.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/jsMain/kotlin/org/mifos/mobile/core/qr/QrCodeScanner.js.kt -------------------------------------------------------------------------------- /core/qrcode/src/nativeMain/kotlin/org/mifos/mobile/core/qr/CameraView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/nativeMain/kotlin/org/mifos/mobile/core/qr/CameraView.kt -------------------------------------------------------------------------------- /core/qrcode/src/nativeMain/kotlin/org/mifos/mobile/core/qr/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/qrcode/src/nativeMain/kotlin/org/mifos/mobile/core/qr/Utils.kt -------------------------------------------------------------------------------- /core/ui/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/README.md -------------------------------------------------------------------------------- /core/ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/build.gradle.kts -------------------------------------------------------------------------------- /core/ui/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/ui/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/proguard-rules.pro -------------------------------------------------------------------------------- /core/ui/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/core_ui_money_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/core_ui_money_in.png -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/ic_icon_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/ic_icon_dashboard.png -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/ic_icon_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/ic_icon_error.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/ic_icon_logo_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/ic_icon_logo_1.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/ic_icon_powered_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/ic_icon_powered_logo.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/drawable/ic_icon_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/drawable/ic_icon_success.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/files/loading_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/files/loading_animation.json -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/Transistion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/Transistion.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/component/MifosTexts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/component/MifosTexts.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/component/NoInternet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/component/NoInternet.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/di/NavigatorModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/di/NavigatorModule.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/BackgroundEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/BackgroundEvent.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/BaseViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/BaseViewModel.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/DevicePreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/DevicePreview.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/EventsEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/EventsEffect.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ImageUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ImageUtil.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/LottieConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/LottieConstants.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/PasswordChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/PasswordChecker.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ResultNavigator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ResultNavigator.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ScreenUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ScreenUiState.kt -------------------------------------------------------------------------------- /core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ShareUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/commonMain/kotlin/org/mifos/mobile/core/ui/utils/ShareUtils.kt -------------------------------------------------------------------------------- /core/ui/src/jsMain/kotlin/org/mifos/mobile/core/ui/utils/ImageUtil.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/jsMain/kotlin/org/mifos/mobile/core/ui/utils/ImageUtil.js.kt -------------------------------------------------------------------------------- /core/ui/src/jsMain/kotlin/org/mifos/mobile/core/ui/utils/ShareUtils.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/core/ui/src/jsMain/kotlin/org/mifos/mobile/core/ui/utils/ShareUtils.js.kt -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_androidApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_androidApp.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_common.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_common.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_data.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_database.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_datastore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_datastore.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_designsystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_designsystem.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_logs.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_model.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_network.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_qrcode.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_testing.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_core_ui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_core_ui.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_about.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_account.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_auth.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_beneficiary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_beneficiary.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_client_charge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_client_charge.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_guarantor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_guarantor.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_help.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_home.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_loan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_loan.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_location.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_notification.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_qr.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_recent_transaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_recent_transaction.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_savings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_savings.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_settings.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_third_party_transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_third_party_transfer.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_transfer_process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_transfer_process.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_update_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_update_password.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_feature_user_profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_feature_user_profile.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_libs_country_code_picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_libs_country_code_picker.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_libs_material3_navigation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_libs_mifos_passcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_libs_mifos_passcode.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_libs_pullrefresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_libs_pullrefresh.svg -------------------------------------------------------------------------------- /docs/images/graphs/dep_graph_shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/docs/images/graphs/dep_graph_shared.svg -------------------------------------------------------------------------------- /fastlane-config/android_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane-config/android_config.rb -------------------------------------------------------------------------------- /fastlane-config/ios_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane-config/ios_config.rb -------------------------------------------------------------------------------- /fastlane/AppFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/AppFile -------------------------------------------------------------------------------- /fastlane/FastFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/FastFile -------------------------------------------------------------------------------- /fastlane/PluginFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/PluginFile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/age_rating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/age_rating.json -------------------------------------------------------------------------------- /fastlane/app_privacy_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/app_privacy_details.json -------------------------------------------------------------------------------- /fastlane/config/config_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/config/config_helpers.rb -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Mifos-Mobile First Release -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/changelogs/default.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Mifos Mobile -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/ios/copyright.txt -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/ios/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/ios/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Mifos Mobile 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://openmf.github.io/privacy_policy_mifos_mobile.html 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/promotional_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/metadata/ios/en-US/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Banking for Mifos & Fineract 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://mifos.org/resources/support/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/primary_category.txt: -------------------------------------------------------------------------------- 1 | FINANCE 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | password 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | maria 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | info@mifos.org 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | Hekmatullah 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | Amin 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | +44 7391462187 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/secondary_category.txt: -------------------------------------------------------------------------------- 1 | BUSINESS -------------------------------------------------------------------------------- /fastlane/metadata/ios/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ios/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/0_APP_IPAD_PRO_3GEN_129_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/0_APP_IPAD_PRO_3GEN_129_0.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/0_APP_IPHONE_65_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/0_APP_IPHONE_65_0.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/1_APP_IPAD_PRO_3GEN_129_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/1_APP_IPAD_PRO_3GEN_129_1.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/1_APP_IPHONE_65_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/1_APP_IPHONE_65_1.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/2_APP_IPAD_PRO_3GEN_129_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/2_APP_IPAD_PRO_3GEN_129_2.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/2_APP_IPHONE_65_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/2_APP_IPHONE_65_2.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/3_APP_IPAD_PRO_3GEN_129_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/3_APP_IPAD_PRO_3GEN_129_3.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/3_APP_IPHONE_65_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/3_APP_IPHONE_65_3.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/4_APP_IPAD_PRO_3GEN_129_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/4_APP_IPAD_PRO_3GEN_129_4.png -------------------------------------------------------------------------------- /fastlane/screenshots_ios/en-US/4_APP_IPHONE_65_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_ios/en-US/4_APP_IPHONE_65_4.png -------------------------------------------------------------------------------- /fastlane/screenshots_macos/en-US/0_APP_DESKTOP_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_macos/en-US/0_APP_DESKTOP_0.png -------------------------------------------------------------------------------- /fastlane/screenshots_macos/en-US/1_APP_DESKTOP_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_macos/en-US/1_APP_DESKTOP_1.png -------------------------------------------------------------------------------- /fastlane/screenshots_macos/en-US/2_APP_DESKTOP_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_macos/en-US/2_APP_DESKTOP_2.png -------------------------------------------------------------------------------- /fastlane/screenshots_macos/en-US/3_APP_DESKTOP_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_macos/en-US/3_APP_DESKTOP_3.png -------------------------------------------------------------------------------- /fastlane/screenshots_macos/en-US/4_APP_DESKTOP_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/fastlane/screenshots_macos/en-US/4_APP_DESKTOP_4.png -------------------------------------------------------------------------------- /feature/accounts/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/accounts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/accounts/build.gradle.kts -------------------------------------------------------------------------------- /feature/accounts/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/accounts/proguard-rules.pro -------------------------------------------------------------------------------- /feature/accounts/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/accounts/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/auth/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/README.md -------------------------------------------------------------------------------- /feature/auth/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/build.gradle.kts -------------------------------------------------------------------------------- /feature/auth/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/auth/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/proguard-rules.pro -------------------------------------------------------------------------------- /feature/auth/src/androidMain/kotlin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/androidMain/kotlin/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/drawable/feature_auth_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/drawable/feature_auth_lock.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/auth/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/auth/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/beneficiary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/README.md -------------------------------------------------------------------------------- /feature/beneficiary/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/build.gradle.kts -------------------------------------------------------------------------------- /feature/beneficiary/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/beneficiary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/proguard-rules.pro -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/beneficiary/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/beneficiary/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/client-charge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/README.md -------------------------------------------------------------------------------- /feature/client-charge/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/build.gradle.kts -------------------------------------------------------------------------------- /feature/client-charge/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/client-charge/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/proguard-rules.pro -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/client-charge/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/client-charge/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/guarantor/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/guarantor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/guarantor/README.md -------------------------------------------------------------------------------- /feature/guarantor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/guarantor/build.gradle.kts -------------------------------------------------------------------------------- /feature/guarantor/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/guarantor/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/guarantor/proguard-rules.pro -------------------------------------------------------------------------------- /feature/guarantor/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/guarantor/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/home/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/README.md -------------------------------------------------------------------------------- /feature/home/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/build.gradle.kts -------------------------------------------------------------------------------- /feature/home/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/home/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/proguard-rules.pro -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_beneficiaries_48px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_beneficiaries_48px.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_charges.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_charges.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_error_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_error_black_24dp.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_help_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_help_black_24dp.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_info_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_info_black_24dp.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_label_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_label_black_24dp.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_loan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_loan.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_logout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_logout.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_settings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_share_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_share_black_24dp.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_surveys_48px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_surveys_48px.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/drawable/ic_visibility_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/drawable/ic_visibility_24px.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-bn/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-es/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-fa/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-id/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-id/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-km/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-km/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-my/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-pl/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-ru/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-te/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values-ur/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/home/src/commonMain/kotlin/org/mifos/mobile/feature/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/kotlin/org/mifos/mobile/feature/home/HomeScreen.kt -------------------------------------------------------------------------------- /feature/home/src/commonMain/kotlin/org/mifos/mobile/feature/home/ServiceItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/home/src/commonMain/kotlin/org/mifos/mobile/feature/home/ServiceItem.kt -------------------------------------------------------------------------------- /feature/loan-account/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/loan-account/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/build.gradle.kts -------------------------------------------------------------------------------- /feature/loan-account/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/proguard-rules.pro -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/loan-account/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-account/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/loan-application/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/loan-application/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-application/build.gradle.kts -------------------------------------------------------------------------------- /feature/loan-application/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-application/proguard-rules.pro -------------------------------------------------------------------------------- /feature/loan-application/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/loan-application/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/location/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/location/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/README.md -------------------------------------------------------------------------------- /feature/location/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/build.gradle.kts -------------------------------------------------------------------------------- /feature/location/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/location/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/proguard-rules.pro -------------------------------------------------------------------------------- /feature/location/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/location/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /feature/location/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/location/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/notification/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/notification/README.md -------------------------------------------------------------------------------- /feature/notification/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/notification/build.gradle.kts -------------------------------------------------------------------------------- /feature/notification/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/notification/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/notification/proguard-rules.pro -------------------------------------------------------------------------------- /feature/notification/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/notification/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/notification/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/notification/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/onboarding-language/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/onboarding-language/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/onboarding-language/build.gradle.kts -------------------------------------------------------------------------------- /feature/onboarding-language/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/onboarding-language/progaurd-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/onboarding-language/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/onboarding-language/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/passcode/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/passcode/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/passcode/build.gradle.kts -------------------------------------------------------------------------------- /feature/passcode/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/passcode/proguard-rules.pro -------------------------------------------------------------------------------- /feature/passcode/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/passcode/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/qr/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/qr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/README.md -------------------------------------------------------------------------------- /feature/qr/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/build.gradle.kts -------------------------------------------------------------------------------- /feature/qr/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/qr/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/proguard-rules.pro -------------------------------------------------------------------------------- /feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/CropContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/CropContent.kt -------------------------------------------------------------------------------- /feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/Dialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/Dialogs.kt -------------------------------------------------------------------------------- /feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/ImagePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/androidMain/kotlin/org/mifos/mobile/feature/qr/ImagePicker.kt -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/qr/src/commonMain/kotlin/org/mifos/mobile/feature/qr/di/QrModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/qr/src/commonMain/kotlin/org/mifos/mobile/feature/qr/di/QrModule.kt -------------------------------------------------------------------------------- /feature/recent-transaction/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/recent-transaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/recent-transaction/README.md -------------------------------------------------------------------------------- /feature/recent-transaction/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/recent-transaction/build.gradle.kts -------------------------------------------------------------------------------- /feature/recent-transaction/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/recent-transaction/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/recent-transaction/proguard-rules.pro -------------------------------------------------------------------------------- /feature/recent-transaction/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/recent-transaction/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/recent-transaction/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/recent-transaction/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/savings-account/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/build.gradle.kts -------------------------------------------------------------------------------- /feature/savings-account/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/proguard-rules.pro -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/savings-account/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-account/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/savings-application/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/savings-application/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-application/build.gradle.kts -------------------------------------------------------------------------------- /feature/savings-application/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-application/proguard-rules.pro -------------------------------------------------------------------------------- /feature/savings-application/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/savings-application/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/settings/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/README.md -------------------------------------------------------------------------------- /feature/settings/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/build.gradle.kts -------------------------------------------------------------------------------- /feature/settings/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/settings/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/proguard-rules.pro -------------------------------------------------------------------------------- /feature/settings/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/ic_help_mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/ic_help_mail.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/ic_help_mobile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/ic_help_mobile.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/ic_passcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/ic_passcode.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/ic_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/ic_translate.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/ic_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/ic_update.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/drawable/mifos_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/drawable/mifos_icon.png -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-ar/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-en/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-en/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-kn/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-ml/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-ms/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-si/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values-sw/strings.xml -------------------------------------------------------------------------------- /feature/settings/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/settings/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/share-account/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/share-account/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-account/build.gradle.kts -------------------------------------------------------------------------------- /feature/share-account/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-account/proguard-rules.pro -------------------------------------------------------------------------------- /feature/share-account/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-account/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/share-application/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/share-application/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-application/build.gradle.kts -------------------------------------------------------------------------------- /feature/share-application/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-application/proguard-rules.pro -------------------------------------------------------------------------------- /feature/share-application/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/share-application/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /feature/status/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/status/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/status/build.gradle.kts -------------------------------------------------------------------------------- /feature/status/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/status/proguard-rules.pro -------------------------------------------------------------------------------- /feature/third-party-transfer/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/third-party-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/third-party-transfer/README.md -------------------------------------------------------------------------------- /feature/third-party-transfer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/third-party-transfer/build.gradle.kts -------------------------------------------------------------------------------- /feature/third-party-transfer/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/third-party-transfer/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/third-party-transfer/proguard-rules.pro -------------------------------------------------------------------------------- /feature/transfer-process/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /feature/transfer-process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/transfer-process/README.md -------------------------------------------------------------------------------- /feature/transfer-process/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/transfer-process/build.gradle.kts -------------------------------------------------------------------------------- /feature/transfer-process/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature/transfer-process/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/transfer-process/proguard-rules.pro -------------------------------------------------------------------------------- /feature/transfer-process/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/feature/transfer-process/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /generateModuleGraphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/generateModuleGraphs.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/gradlew.bat -------------------------------------------------------------------------------- /keystore-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/keystore-manager.sh -------------------------------------------------------------------------------- /keystores/release_keystore.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/keystores/release_keystore.keystore -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /libs/country-code-picker/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/country-code-picker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/README.md -------------------------------------------------------------------------------- /libs/country-code-picker/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/build.gradle.kts -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-so/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-so/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /libs/country-code-picker/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/country-code-picker/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /libs/material3-navigation/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/material3-navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/material3-navigation/README.md -------------------------------------------------------------------------------- /libs/material3-navigation/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/material3-navigation/build.gradle.kts -------------------------------------------------------------------------------- /libs/material3-navigation/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/material3-navigation/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/mifos-passcode/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/mifos-passcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/mifos-passcode/README.md -------------------------------------------------------------------------------- /libs/mifos-passcode/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/mifos-passcode/build.gradle.kts -------------------------------------------------------------------------------- /libs/mifos-passcode/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/mifos-passcode/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /libs/mifos-passcode/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/mifos-passcode/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /libs/pullrefresh/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /libs/pullrefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/pullrefresh/README.md -------------------------------------------------------------------------------- /libs/pullrefresh/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/pullrefresh/build.gradle.kts -------------------------------------------------------------------------------- /libs/pullrefresh/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/libs/pullrefresh/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lint/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /lint/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/build.gradle.kts -------------------------------------------------------------------------------- /lint/lint-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/lint-baseline.xml -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/MifosIssueRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/MifosIssueRegistry.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/TestMethodNameDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/TestMethodNameDetector.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/config/Priorities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/config/Priorities.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/util/LintOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/util/LintOption.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/util/LintUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/util/LintUtils.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/util/OptionLoadingDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/util/OptionLoadingDetector.kt -------------------------------------------------------------------------------- /lint/src/main/kotlin/org/mifos/mifospay/lint/util/StringSetLintOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/main/kotlin/org/mifos/mifospay/lint/util/StringSetLintOption.kt -------------------------------------------------------------------------------- /lint/src/test/kotlin/org/mifos/mifospay/lint/TestMethodNameDetectorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/lint/src/test/kotlin/org/mifos/mifospay/lint/TestMethodNameDetectorTest.kt -------------------------------------------------------------------------------- /scripts/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/scripts/pre-commit.sh -------------------------------------------------------------------------------- /scripts/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/scripts/pre-push.sh -------------------------------------------------------------------------------- /secrets.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/secrets.env -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /spotless/copyright.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/spotless/copyright.kt -------------------------------------------------------------------------------- /spotless/copyright.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/spotless/copyright.kts -------------------------------------------------------------------------------- /spotless/copyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/spotless/copyright.xml -------------------------------------------------------------------------------- /sync-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openMF/mifos-mobile/HEAD/sync-dirs.sh --------------------------------------------------------------------------------