* chore: Update web dependencies
Updated the following dependencies:
- Upgraded `enhanced-resolve` from 5.17.0 to 5.18.0
- Upgraded `karma` from 6.4.3 to 6.4.4
- Upgraded `kotlin-web-helpers` to 2.0.0
- Upgraded `mocha` from 10.7.0 to 10.7.3
- Upgraded `webpack` from 5.93.0 to 5.94.0
- Upgraded `ws` from 8.5.0 to 8.18.0
Removed the following dependencies:
- `@types/eslint`
- `@types/eslint-scope`
Also, updated the multi-platform build and publish workflow to use `niyajali/mifos-mobile-github-actions` instead of `openMF/mifos-mobile-github-actions`.
* ci: Update GitHub Actions workflow
This commit updates the GitHub Actions workflows to:
- Remove the pull request trigger from the `build-and-deploy-site` workflow. The workflow will now only be triggered manually or on a schedule.
- Add `build_ios` as an input to the `multi-platform-build-and-publish` workflow to control whether the iOS app should be built.
- Remove unused inputs from the `multi-platform-build-and-publish` workflow, including `publish_desktop` and `publish_web`.
* chore: Add Fastlane lanes and update workflows
This commit introduces new Fastlane lanes for Android and iOS:
- **Android:**
- `assembleDebugApks`: Assembles debug APKs.
- `assembleReleaseApks`: Assembles release APKs using a keystore.
- `bundlePlayStoreRelease`: Bundles a Play Store release, including generating a version and release notes.
- `deploy_on_firebase`: Deploys the release APK to Firebase App Distribution.
- `buildAndSignApp`: A private lane to build and sign the app with provided keystore credentials.
- `generateVersion`: Generates and sets version information.
- `generateReleaseNotes`: Generates release notes from git commits.
- **iOS:**
- `build_ios`: Builds the iOS app with optional configuration (defaults to Debug).
- `increment_version`: Increments the build number using Firebase App Distribution's latest release.
- `deploy_on_firebase`: Deploys the iOS app to Firebase App Distribution, including incrementing the build number.
- `generateReleaseNotes`: Generates release notes from git commits.
It also updates the following workflows:
- **promote-to-production.yml**: Removes the manual trigger and workflow dispatch, making it only triggered by GitHub releases.
- **tag-weekly-release.yml**: Updates the cron schedule to run weekly.
- **multi-platform-build-and-publish.yml**: Switches back to using `openMF/mifos-mobile-github-actions` instead of `niyajali/mifos-mobile-github-actions`.
Additionally, it relocates the keystore to a `keystores` directory, updates the `build.gradle.kts` file to reflect this change, and adds necessary metadata for the Play Store. It also updates the `AppFile` to use the playStorePublishServiceCredentialsFile from the secrets directory and adds a `secrets` directory to the `.gitignore`.
* ci: Remove `publish_android` input from multi-platform workflow
This commit removes the `publish_android` input from the `multi-platform-build-and-publish` workflow.
This input was previously used to control whether the Android app should be published to the Play Store.
Since this functionality is no longer required, the input has been removed to simplify the workflow configuration.
* chore: Remove `repoName` param from `generateReleaseNotes` lane
This commit removes the `repoName` parameter from the `generateReleaseNotes` lane in the Fastfile. The `repoName` parameter is no longer needed as the lane now automatically determines the repository name.
This change simplifies the `generateReleaseNotes` lane and makes it more robust.
* chore: Update web dependencies
Updated the following dependencies:
- Upgraded `enhanced-resolve` from 5.17.0 to 5.18.0
- Upgraded `karma` from 6.4.3 to 6.4.4
- Upgraded `kotlin-web-helpers` to 2.0.0
- Upgraded `mocha` from 10.7.0 to 10.7.3
- Upgraded `webpack` from 5.93.0 to 5.94.0
- Upgraded `ws` from 8.5.0 to 8.18.0
Removed the following dependencies:
- `@types/eslint`
- `@types/eslint-scope`
Also, updated the multi-platform build and publish workflow to use `niyajali/mifos-mobile-github-actions` instead of `openMF/mifos-mobile-github-actions`.
* ci: Update GitHub Actions workflow
This commit updates the GitHub Actions workflows to:
- Remove the pull request trigger from the `build-and-deploy-site` workflow. The workflow will now only be triggered manually or on a schedule.
- Add `build_ios` as an input to the `multi-platform-build-and-publish` workflow to control whether the iOS app should be built.
- Remove unused inputs from the `multi-platform-build-and-publish` workflow, including `publish_desktop` and `publish_web`.
* docs: Add module graphs for all modules
This commit adds module graphs to the README files of all modules, providing a visual representation of the dependencies between them.
The graphs are generated using Mermaid.js and show the relationships between modules, making it easier to understand the overall structure of the project.
* chore: Update web dependencies
Updated the following dependencies:
- Upgraded `enhanced-resolve` from 5.17.0 to 5.18.0
- Upgraded `karma` from 6.4.3 to 6.4.4
- Upgraded `kotlin-web-helpers` to 2.0.0
- Upgraded `mocha` from 10.7.0 to 10.7.3
- Upgraded `webpack` from 5.93.0 to 5.94.0
- Upgraded `ws` from 8.5.0 to 8.18.0
Removed the following dependencies:
- `@types/eslint`
- `@types/eslint-scope`
Also, updated the multi-platform build and publish workflow to use `niyajali/mifos-mobile-github-actions` instead of `openMF/mifos-mobile-github-actions`.
* ci: Update GitHub Actions workflow
This commit updates the GitHub Actions workflows to:
- Remove the pull request trigger from the `build-and-deploy-site` workflow. The workflow will now only be triggered manually or on a schedule.
- Add `build_ios` as an input to the `multi-platform-build-and-publish` workflow to control whether the iOS app should be built.
- Remove unused inputs from the `multi-platform-build-and-publish` workflow, including `publish_desktop` and `publish_web`.
This commit updates various dependencies to their latest versions, including Compose, Koin, Ktor, and Firebase. It also removes the `READ_CONTACTS` permission from the Android manifest, as it is no longer needed.
Additionally, proguard configurations are updated to support the updated Ktor library and Ktorfit library.
This commit explicitly passes secrets to reusable workflows, rather than relying on inheritance. This addresses an issue with reusable workflows not inheriting secrets as expected.
- The `secrets: inherit` statement has been removed from the `multi-platform-build-and-publish` and `promote-to-production` workflows.
- Instead, secrets are explicitly defined in the `secrets` section of each workflow, ensuring that the reusable workflows have access to the necessary secrets.
This commit migrates the CI workflows from reusable workflows to local workflows within the repository. This change provides greater control and flexibility in managing the CI process.
The following changes were made:
- Removed the dependency on the `mifos-mobile-github-actions` repository for CI workflows.
- Implemented local workflows for tagging weekly releases, PR checks, and building/publishing multi-platform artifacts.
- Updated the weekly release workflow to trigger the multi-platform build and publish workflow for beta releases.
- Added package name inputs to the PR check workflow for Android, desktop, web, and iOS platforms.
- Removed unused workflows for publishing Android and web apps to Firebase and GitHub Pages, respectively.
* chore: Configured Github Actions for CI
This commit introduces two new CI workflows:
- **Publish Web App:** This workflow builds and deploys the web app to GitHub Pages.
- **Publish Android App on Firebase:** This workflow builds and publishes the Android app to Firebase.
* chore: Update Firebase Action Version & Added Permission
* chore: Update Firebase Action Version & Added Permission
* Refactor: Migrate to fastlane for android & ios firebase app distribution
This commit migrates the Android and iOS Firebase app distribution process to use Fastlane.
- Removed the custom Gradle task for Firebase app distribution.
- Removed the firebase appdistribution plugin from the project.
- Implemented `android deploy_on_firebase` Fastlane lane for Android Firebase app distribution.
- Implemented `ios deploy_on_firebase` Fastlane lane for iOS Firebase app distribution.
- Updated the internal release workflow to trigger the Fastlane lanes.
- Updated documentation to reflect the changes.
- Updated the weekly schedule workflow to trigger the new workflow for internal release.
* Added Documentation & Comments
This commit migrates the Android and iOS Firebase app distribution process to use Fastlane.
- Removed the custom Gradle task for Firebase app distribution.
- Removed the firebase appdistribution plugin from the project.
- Implemented `android deploy_on_firebase` Fastlane lane for Android Firebase app distribution.
- Implemented `ios deploy_on_firebase` Fastlane lane for iOS Firebase app distribution.
- Updated the internal release workflow to trigger the Fastlane lanes.
- Updated documentation to reflect the changes.
- Updated the weekly schedule workflow to trigger the new workflow for internal release.
* Chore: Updated Fastlane and CI for release
This commit adds Fastlane for automating the Android release process and configures CI for internal, beta, and production releases using GitHub Actions.
The following changes were made:
- Added Fastlane configuration files for building, testing, and deploying the app.
- Added GitHub Actions workflows for triggering internal, beta, and production releases.
- Updated .gitignore to exclude Fastlane report files.
- Updated dependency versions in Gemfile.lock.
- Added a README for Fastlane.
- Updated the make_site workflow to trigger on released releases instead of published releases.
* chore: trigger publish on pull request close
* chore: Updated fastlane dependencies
* chore: Updated fastlane dependencies
chore: trigger publish on pull request close
Chore: Updated Fastlane and CI for release
This commit adds Fastlane for automating the Android release process and configures CI for internal, beta, and production releases using GitHub Actions.
The following changes were made:
- Added Fastlane configuration files for building, testing, and deploying the app.
- Added GitHub Actions workflows for triggering internal, beta, and production releases.
- Updated .gitignore to exclude Fastlane report files.
- Updated dependency versions in Gemfile.lock.
- Added a README for Fastlane.
- Updated the make_site workflow to trigger on released releases instead of published releases.
* chore: Fixing fastlane configuration
* chore: Update lock file
* chore: Updating Fast file
* chore: Updating Fast file
* chore: Fixing Fast file
* chore: Fixing Fast file
* chore: Fixing Fastlane
* chore: Fixing Fastlane
* chore: Setup fox iOS Firebase App Distribution
* chore: Fix Typo
* Update internal_or_beta_release.yml
* chore: Fixing Workflow
* chore: Fixing Workflow File
* chore: Updating Bundler
* Update FastFile
* chore: Updating Workflow
* chore: Configured Multi-Platform App Build and Distribution
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* chore: Fixing workflow usage
* Chore: Updated Fastlane and CI for release
This commit adds Fastlane for automating the Android release process and configures CI for internal, beta, and production releases using GitHub Actions.
The following changes were made:
- Added Fastlane configuration files for building, testing, and deploying the app.
- Added GitHub Actions workflows for triggering internal, beta, and production releases.
- Updated .gitignore to exclude Fastlane report files.
- Updated dependency versions in Gemfile.lock.
- Added a README for Fastlane.
- Updated the make_site workflow to trigger on released releases instead of published releases.
* Feat: KMP Library Setup (#1766)
* Migrating from hilt to koin (This) (#1764)
* Migrating from hilt to koin
* Fixed Instance creation error
* refactor: Removed Hilt and migrated to Koin
This commit removes Hilt and migrates the project to Koin for dependency injection.
The following
changes were made:
- Removed the `AndroidHiltConventionPlugin`.
- Added the `AndroidKoinConventionPlugin`.
- Updated dependencies to use Koin.
- Updated KSP configuration for Koin.
- Updated feature modules to use Koin.
- Updated common modules to use Koin
.
- Removed Hilt annotations and replaced them with Koin annotations.
- Updated ViewModels to use Koin for dependency injection.
- Updated modules to use Koin for dependency injection.
* Formatted Dependencies
* migrating from hilt to koin clean up commit
* Revert "migrating from hilt to koin clean up commit"
This reverts commit bb63058e49.
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
* Feat: KMP Library Setup
---------
Co-authored-by: Nagarjuna <99315689+Nagarjuna0033@users.noreply.github.com>
* Feat: [:core:model] - Migrated to KMM (#1770)
* Feat: [:core:common] KMP Migration (#1768)
* Feat: [:core:common] KMP Migration
* Updated Usage Declaration
* Feat: [:core:datastore] - Migrated to KMP (#1769)
* Feat: [:core:network] - Migrated to KMP (#1772)
* Feat: [:core:network] - Migrated to KMP
* Feat: [:core:data] - Migrated to KMP Library
* Feat: [:core:designsystem] - Migrated to KMP with CMP Library (#1774)
* Feat: [:core:ui] - Migrated to KMP with CMP Library (#1775)
* Feat: [:feature:auth] - Migrated to Kotlin Multiplatform (#1782)
* Feat: [:feature:auth] - Migrated to Kotlin Multiplatform
* Added Support For Web
* Feat: Migrated Passcode Module to KMP (#1783)
* Feat: Migrated Home Module to KMP (#1784)
* Feat: Migrated Edit Password Module to KMP (#1787)
* Feat: Migrated FAQ module to kmp (#1786)
* Feat: Migrated Settings Module to KMP (#1785)
* Feat: Migrated Profile Module to KMP (#1788)
* Feat: Migrated History Module to KMP (#1790)
* Feat: Migrated Payments Module to KMP (#1791)
* Feat: Migrated Finance Module to KMP (#1792)
* Feat: Migrated Accounts Module to KMP (#1793)
* Feat: Migrated Accounts Module to KMP
* Updated README.md
* Update README.md
* Feat: Migrated Invoices Module to KMP (#1794)
* Feat: Migrated KYC Module to KMP (#1798)
* Migrated Notification Module to KMP (#1799)
* Feat: Migrated KYC Module to KMP
* Feat: Migrated Notification Module to KMP
* Feat: Migrated Saved Card Module to KMP (#1800)
* Feat: Migrated Receipt Module to KMP (#1801)
* fix: Ios Build (#1802)
* Feat: Migrated SI Module to KMP (#1803)
* Feat: Migrated Request Money Module to KMP (#1807)
* Feat: Migrated Send Money Module to KMP (#1808)
* Feat: Migrated Make Transfer Module to KMP (#1809)
* Feat: Migrated QR Module to KMP (#1810)
* Feat: Migrated UPI Setup Module to KMP (#1811)
* Feat: Final Clean-up For KMP (#1812)
* Feat: Final Cleanup For KMP
* Update README.md
* Update EditPassword README.md
* Update FAQ README.md
* Update Finance README.md
* Update History README.md
* Update Home README.md
* Update Invoice README.md
* Update KYC README.md
* Update Make Transfer README.md
* Update Notification README.md
* Update Payments README.md
* Update Profile README.md
* Update Saved Card README.md
* Update Send Money README.md
* Update Settings README.md
* Update SI README.md
* Migrating from hilt to koin (This) (#1764)
* Migrating from hilt to koin
* Fixed Instance creation error
* refactor: Removed Hilt and migrated to Koin
This commit removes Hilt and migrates the project to Koin for dependency injection.
The following
changes were made:
- Removed the `AndroidHiltConventionPlugin`.
- Added the `AndroidKoinConventionPlugin`.
- Updated dependencies to use Koin.
- Updated KSP configuration for Koin.
- Updated feature modules to use Koin.
- Updated common modules to use Koin
.
- Removed Hilt annotations and replaced them with Koin annotations.
- Updated ViewModels to use Koin for dependency injection.
- Updated modules to use Koin for dependency injection.
* Formatted Dependencies
* migrating from hilt to koin clean up commit
* Revert "migrating from hilt to koin clean up commit"
This reverts commit bb63058e49.
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
* Profile UI redesign (#1767)
* Refactor Profile UI
* Fixed Build Issue
* Profile UI Bug Fix & Improvement
* added placeholder for when uri is null
cleanup
fix spotless test failure
* Fix - CI Build Issue
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
* refactor: Redesign payment screen (#1773)
* refactor: Redesign payment screen
* resolved detekt error
* refactor : changed current theme instead of using NewUi
* resolved spotless errors
* refactor: Redesign finance screen (#1777)
* refactor: Redesign payment screen
* resolved detekt error
* refactor : changed current theme instead of using NewUi
* resolved spotless errors
* refactor: Redesign finance screen UI
* resolved spotless errors
* resolved conflicts
* changed structure of accounts screen
* refactor padding values in finance screen
* fix: dark theme colors (#1789)
* fix: dark theme colors
* fixed edit icon tint
* Fix invoice api (#1797)
* Redesign requeset screen UI
* fix MissingKoinDefinitionException
* removed comments and fixed share qr code bug
* fix: Invoice APIs
* update readme file (#1804)
* update readme file
* update readme file
* update readme file with how to contribute
* Add branch policy (#1805)
* update readme file
* update readme file
* update readme file with how to contribute
* update readme file with how to contribute
* update readme file with branch Policy
---------
Co-authored-by: Rajan Maurya <therajanmaurya@users.noreply.github.com>
* Migrating from hilt to koin (This) (#1764)
* Migrating from hilt to koin
* Fixed Instance creation error
* refactor: Removed Hilt and migrated to Koin
This commit removes Hilt and migrates the project to Koin for dependency injection.
The following
changes were made:
- Removed the `AndroidHiltConventionPlugin`.
- Added the `AndroidKoinConventionPlugin`.
- Updated dependencies to use Koin.
- Updated KSP configuration for Koin.
- Updated feature modules to use Koin.
- Updated common modules to use Koin
.
- Removed Hilt annotations and replaced them with Koin annotations.
- Updated ViewModels to use Koin for dependency injection.
- Updated modules to use Koin for dependency injection.
* Formatted Dependencies
* migrating from hilt to koin clean up commit
* Revert "migrating from hilt to koin clean up commit"
This reverts commit bb63058e49.
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
* Merge kmm-impl to dev
---------
Co-authored-by: Nagarjuna <99315689+Nagarjuna0033@users.noreply.github.com>
Co-authored-by: Rajan Maurya <therajanmaurya@users.noreply.github.com>
Co-authored-by: Pronay Sarker <pronaycoding@gmail.com>
Co-authored-by: kapmaurya <152150716+kapmaurya@users.noreply.github.com>
* update readme file
* update readme file
* update readme file with how to contribute
* update readme file with how to contribute
* update readme file with branch Policy
---------
Co-authored-by: Rajan Maurya <therajanmaurya@users.noreply.github.com>
* Refactor Profile UI
* Fixed Build Issue
* Profile UI Bug Fix & Improvement
* added placeholder for when uri is null
cleanup
fix spotless test failure
* Fix - CI Build Issue
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
* Migrating from hilt to koin
* Fixed Instance creation error
* refactor: Removed Hilt and migrated to Koin
This commit removes Hilt and migrates the project to Koin for dependency injection.
The following
changes were made:
- Removed the `AndroidHiltConventionPlugin`.
- Added the `AndroidKoinConventionPlugin`.
- Updated dependencies to use Koin.
- Updated KSP configuration for Koin.
- Updated feature modules to use Koin.
- Updated common modules to use Koin
.
- Removed Hilt annotations and replaced them with Koin annotations.
- Updated ViewModels to use Koin for dependency injection.
- Updated modules to use Koin for dependency injection.
* Formatted Dependencies
* migrating from hilt to koin clean up commit
* Revert "migrating from hilt to koin clean up commit"
This reverts commit bb63058e49.
---------
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>