From 0fa31c0b87cf9348ce718d743b1f4f70ef095f06 Mon Sep 17 00:00:00 2001 From: JILAKARA REVANTH KUMAR <146642552+revanthkumarJ@users.noreply.github.com> Date: Sun, 24 Nov 2024 03:21:27 +0530 Subject: [PATCH 1/3] Readme Updated (#1818) --- README.md | 231 +++++++--------------------------------- Screenshot.md | 44 -------- docs/readmes/Android.md | 41 +++++++ docs/readmes/Linux.md | 45 ++++++++ docs/readmes/Windows.md | 45 ++++++++ 5 files changed, 167 insertions(+), 239 deletions(-) delete mode 100644 Screenshot.md create mode 100644 docs/readmes/Android.md create mode 100644 docs/readmes/Linux.md create mode 100644 docs/readmes/Windows.md diff --git a/README.md b/README.md index 4755e4e1c..d52c7c678 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,18 @@ # Mobile Wallet -Mobile Wallet is an Android-based framework for mobile wallets based on top of Fineract. The app follows +Mobile Wallet is an Kotlin Multiplatform (KMP)-based framework for mobile wallets based on top of Fineract. The app follows clean architecture and contains a core library module that can be used as a dependency in any other wallet based project. It is developed at MIFOS together with a global community. -# Run the project -![Screenshot 2024-10-19 005524](https://github.com/user-attachments/assets/8023c529-1215-4c4b-b212-630f0233223f) -- To run the android-app select the `mifospay-android` run configuration and click run. -- To run the desktop-app select the `mifospay-desktop` run configuration and click run. -- To run the web-app-js select the `mifospay-web-js` run configuration and click run. +## Run the Project + +![Screenshot](https://github.com/user-attachments/assets/8023c529-1215-4c4b-b212-630f0233223f) + +- **Android App**: Select the `mifospay-android` run configuration and click **Run**. +- **Desktop App**: Select the `mifospay-desktop` run configuration and click **Run**. +- **Web App (JavaScript)**: Select the `mifospay-web-js` run configuration and click **Run**. + ## KMP Status for modules @@ -58,22 +61,24 @@ that can be used as a dependency in any other wallet based project. It is develo ✔️: Successfully compiled ❌: Not functioning, requires further attention -## Notice +⚠️ **Notice:** +We are fully using [Jetpack Compose](https://developer.android.com/jetpack/compose) and are now in the process of converting to support **Kotlin Multiplatform**. -:warning: We are fully committed to implement [Jetpack Compose](https://developer.android.com/jetpack/compose) and moving ourself to support -`kotlin multi-platform`. **If you are sending any PR regarding `XML changes` we will `not` consider at this moment but converting XML to jetpack compose are most welcome.** If you sending any PR regarding logical changes in Activity/Fragment you are most welcome. +Contributions are welcome in the following areas: +- Development and enhancements related to Kotlin Multiplatform. +- Logical changes or improvements in existing Jetpack Compose-based features. + +We appreciate your contributions and look forward to collaborating with you! | Development | Chat | |--------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------| | ![Mobile-Wallet CI[Master/Dev]](https://github.com/openMF/mobile-wallet/workflows/Mobile-Wallet%20CI%5BMaster/Dev%5D/badge.svg?branch=dev) | [![Join the chat at https://mifos.slack.com/](https://img.shields.io/badge/Join%20Our%20Community-Slack-blue)](https://mifos.slack.com/) | - ## Join Us on Slack Mifos boasts an active and vibrant contributor community, Please join us on [slack](https://join.slack.com/t/mifos/shared_invite/zt-2f4nr6tk3-ZJlHMi1lc0R19FFEHxdvng). Once you've joined the mifos slack community, please join the `#mobile-wallet` channel to engage with mobile-wallet development. If you encounter any difficulties joining our Slack channel, please don't hesitate to open an issue. This will allow us to assist you promptly or send you an invitation. - ## How to Contribute Thank you for your interest in contributing to the Mobile Wallet project by Mifos! We welcome all contributions and encourage you to follow these guidelines to ensure a smooth and efficient collaboration process. @@ -82,27 +87,9 @@ The issues should be raised via the GitHub issue tracker. For Issue tracker guid ### Branch Policy -We have the following branches : - - * **dev** - All the contributions should be pushed to this branch. If you're making a contribution, - you are supposed to make a pull request to _dev_. - Please make sure it passes a build check on Travis. +For development, always pull the **dev** branch, as all contributions and updates are pushed here. Once development is complete, changes are merged into the **master** branch, which contains stable and bug-free code. - It is advisable to clone only the development branch using the following command: - - ``` - git clone -b - ``` - - With Git 1.7.10 and later, add --single-branch to prevent fetching of all branches. Example, with development branch: - - ``` - git clone -b dev --single-branch https://github.com/username/mobile-wallet.git` - ``` - - * **master** - The master branch contains all the stable and bug-free working code. The development branch once complete will be merged with this branch. +To know more about branch policies, click [here](https://github.com/openMF/mobile-wallet/wiki/Branch-Policy). ### Demo credentials Fineract Instance: demo.mifos.io @@ -110,169 +97,31 @@ Fineract Instance: demo.mifos.io Username: `venus` Password: `Venus2023#` - + ### Development Setup -Before you begin, you should have already downloaded the Android Studio SDK and set it up correctly. You can find a guide on how to do this here: [Setting up Android Studio](http://developer.android.com/sdk/installing/index.html?pkg=studio). - -1. **Fork the Git Repository** - - Forking the repository is the first step to start contributing. Click on the "Fork" button in the top right corner of the **[Mobile Wallet (Mifos Pay) repository](https://github.com/openMF/mobile-wallet)** to create your own fork. - - ![image](https://user-images.githubusercontent.com/44428198/254533248-3016c6eb-30b7-492b-91e8-dbbb61f76775.png) - - Forking creates a copy of the project under your GitHub account. This enables you to work on changes without affecting the original repository directly. - -2. **Clone the Forked Repository** - - Once you have forked the repository, you need to clone it to your local development environment. Open a terminal or Git Bash and use the following command: - - ```bash - git clone https://github.com/yourUsername/mobile-wallet.git - ``` - - Replace **`yourUsername`** with your actual GitHub username. Cloning creates a local copy of the repository on your machine, allowing you to make changes and contributions. - -3. **Working Locally on Your Cloned Repository** - - After cloning, navigate to the project directory using the terminal or Git Bash. - - Before making any changes, create a new branch dedicated to the feature or bug fix you'll be working on: - - ```bash - git checkout -b "new-branch-name" - ``` - - Ensure that **`new-branch-name`** reflects the purpose of your changes (e.g., **`add-payment-feature`** or **`fix-bug-123`**). - - Make the necessary changes to the files to address the issue you're working on. Once you're done, you will be ready to proceed with verifying and committing your changes. - -4. **Perform a Gradle Check** - -All your pull requests must pass the CI build only then, it will be allowed to merge. -Sometimes, when the build doesn't pass you can use these commands in your local terminal and check for the errors,
- -**We've commited to use Material3 design in our project. And added lint check for not to use any M2 libraries in our project.
** -**And when adding new library, please make sure to follow the naming convention and place in sequential order(A->Z).
** - -In MacOS, Windows or Linux, you should run the following commands before opening a PR, and make sure to pass all the commands: - -**In order to enhance our development process, we have implemented Git hooks in our project. -To install these hooks locally, simply run the command `./gradlew installGitHooks`. -This will ensure that the Git hooks are installed on your local machine.**
- -* `./gradlew check -p build-logic` this checks build-logic configured properly.
-* `./gradlew spotlessApply --no-configuration-cache` an check and apply formatting to any file.
-* `./gradlew dependencyGuardBaseline` to generate dependency-guard baseline.
-* `./gradlew detekt` to check detekt error.
-* `./gradlew testDemoDebug :lint:test :mifospay:lintProdRelease :lint:lint` to check lint and test error.
-* `./gradlew build` to build the project.
-* `./gradlew updateProdReleaseBadging` to update the badging for the project.
- -*Or Run the `ci-prebuild.sh` or `ci-prebuild.bat` script to run all the above commands in one go.* +To learn about the development setup, please visit the following link: +[Development Setup Guide](https://github.com/openMF/mobile-wallet/wiki/Development-Setup) ### **Committing Your Changes** -When you've finished making your changes and have tested them locally, it's time to commit your work: - -1. **Stage Changes** - - Use the following command to stage all changes: - - ```bash - git add . - ``` - - This adds all modified and new files to the staging area, preparing them for the commit. - -2. **Commit Changes** - - Commit your changes with a meaningful commit message that describes the purpose of your changes: - - ```bash - git commit -m "Your commit message goes here" - ``` - - A good commit message is concise and provides enough context about the changes made. Mifos follows its own commit style guidelines that you must follow. Learn more about it [here](https://github.com/openMF/mifos-mobile-cn/blob/master/COMMIT_STYLE.md). - -3. **Push Changes** - - Push your changes to your forked repository on GitHub: - - ```bash - git push origin new-branch-name - ``` - - Replace **`new-branch-name`** with the name of the branch you created earlier. +Once you make changes in your local repository, you need to commit them to your GitHub repository. +Don't know how to commit? Click [here](https://github.com/openMF/mobile-wallet/wiki/Committing-Your-Changes) to learn more. ### **Making a Pull Request** -Once your changes are pushed to your forked repository, you can initiate a pull request to merge your changes into the main project: - -1. Navigate to the [Mobile Wallet (Mifos Pay) repository](https://github.com/openMF/mobile-wallet) on GitHub. -2. Click on the "Pull Requests" tab and then click "New Pull Request." - -![image](https://user-images.githubusercontent.com/44428198/254533309-2df4dca7-aec3-4197-8b86-8b80988e08d7.png) - -1. Ensure the base repository is set to "openMF/mobile-wallet" and the base branch is the main development branch `dev`. -2. Set the compare repository to your forked repository and the compare branch to the branch you just created with your changes (e.g., in my case, the head repository was set to “rchtgpt/mobile-wallet” and the comparison branch was `kotlin-migration-common`. -3. Fill out the pull request template, providing a clear description of your changes, why they are necessary, and any relevant information for the reviewers. -4. Click "Create Pull Request" to submit your changes for review. +After pushing your changes to your forked repository, you can create a pull request to propose merging your changes into the main project. +Don't know how to create a pull request? Click [here](https://github.com/openMF/mobile-wallet/wiki/Making-a-Pull-Request) to learn more. ### **Squashing Your Commits** -It is common for pull requests to undergo multiple rounds of review before being merged. To keep the Git history clean and organized, you should always squash your commits before finalizing the merge. Here's how you can do it: - -1. Squash your commits: - - ```bash - git rebase -i HEAD~x - ``` - - Replace **`x`** with the number of commits you want to squash. An interactive rebase will open, allowing you to choose how to combine the commits. Change **`pick`** to **`squash`** (or simply **`s`**) for all but the topmost commit. Save and exit the editor. - -2. Amend the commit message if needed. - - ```bash - git commit --amend - ``` - -3. Force push the changes to your forked repository: - - ```bash - git push --force origin your-branch-name - ``` - - Please note that force pushing rewrites the Git history, so use it with caution. - +To maintain a clean and organized Git history, it is recommended to squash your commits before merging. +Don't know how to squash commits? Click [here](https://github.com/openMF/mobile-wallet/wiki/Squashing-Your-Commits) to learn more. ### **Solving Merge Conflicts** -In some cases, your pull request might encounter merge conflicts when the changes cannot be automatically merged with the main branch. To resolve merge conflicts: - -1. Update your local branch with the latest changes from the main repository: - - ```bash - git fetch upstream - git checkout your-branch-name - git rebase upstream/master - ``` - -2. Git will pause when encountering conflicts. Open the affected files, resolve the conflicts manually, and save the changes. -3. After resolving all conflicts, stage the changes and continue with the rebase: - - ```bash - git add . - git rebase --continue - ``` - -4. Finally, force push the changes to your forked repository: - - ``` - git push --force origin your-branch-name - ``` - -Your pull request will be updated with the resolved conflicts, and the reviewers can proceed with the review process. Again, don’t forget to squash your commits. +Sometimes, your pull request may encounter merge conflicts that need to be resolved manually. +Don't know how to resolve merge conflicts? Click [here](https://github.com/openMF/mobile-wallet/wiki/Solving-Merge-Conflicts) to learn more. ### Conclusion By following these contribution guidelines, you're all set to start contributing to the Mobile Wallet (Mifos Pay) project. We appreciate your efforts and look forward to your valuable contributions. Happy coding! @@ -288,21 +137,15 @@ To get the latest apk fom the Github actions artifacts, follow these steps: ## Wiki -https://github.com/openMF/mobile-wallet/wiki - +To know more about the project, visit our [Wiki](https://github.com/openMF/mobile-wallet/wiki). ## Screenshots - -

- - - -

- -

- Click here for more screenshots -

- +| OS | Image | More Images | +|:-----------------:|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------:| +| Android | | Load More | +| iOS | | Load More | +| Windows | | Load More | +| Linux | | Load More | ## Contributors @@ -311,5 +154,3 @@ Special thanks to the incredible code contributors who continue to drive this pr - - diff --git a/Screenshot.md b/Screenshot.md deleted file mode 100644 index 6f8ddb9b2..000000000 --- a/Screenshot.md +++ /dev/null @@ -1,44 +0,0 @@ -|Splash Screen|Login Screen|Selecting User Type| -|:---:|:---:|:---:| -|||| - -|Google Signup|Mobile Verification|Registration Screen| -|:---:|:---:|:---:| -|||| - -|Passcode Verification|Home Screen|Recent Transactions| -|:---:|:---:|:---:| -|||| - - -|Selecting Transfer Method|Scanning QR Code for VPA Address|Making a Payment| -|:---:|:---:|:---:| -|||| - - -|Requesting Payment|Request Payment QR Code |Transaction History| -|:---:|:---:|:---:| -|||| - -|Transaction Details|Specification Transactions History|Transaction Receipt| -|:---:|:---:|:---:| -|||| - -|Bank Accounts Screen|Linking Bank Account|Phone Number Verification| -|:---:|:---:|:---:| -|||| - - -|Merchants Screen|Merchant Payment and History Screen|User Profile Screen| -|:---:|:---:|:---:| -|||| - - -|Edit Profile Screen|Change Password Screen|Change Passcode Screen| -|:---:|:---:|:---:| -|||| - - -|Application Settings|FAQ Screen| -|:---:|:---:| -||| diff --git a/docs/readmes/Android.md b/docs/readmes/Android.md new file mode 100644 index 000000000..3b190dc1e --- /dev/null +++ b/docs/readmes/Android.md @@ -0,0 +1,41 @@ +# Mobile Wallet Android App Images + +| Splash Screen | Login Screen | Create an Account | +|:------------------------------------------------------------:|:----------------------------------------------------------:|:--------------------------------------------------------------:| +| | | | + +| Sign Up Screen | Create Passcode | Home Screen | +|:-------------------------------------------------------:|:-------------------------------------------------------------:|:---------------------------------------------------:| +| | | | + +| Transaction History | Send Money | Payment Success | +|:------------------------------------------------------------------:|:--------------------------------------------------------:|:--------------------------------------------------------------:| +| | | | + +| Request Money | Request Money Scanner | Payment History | +|:-------------------------------------------------------------:|:-------------------------------------------------------------------:|:--------------------------------------------------------------:| +| | | | + +| Transaction Details Screen | Finance Accounts | Payments SI Screen | +|:-------------------------------------------------------------------:|:---------------------------------------------------------------:|:----------------------------------------------------------:| +| | | | + +| Instruction Details Screen | Invoices Screen | Invoices Details Screen | +|:--------------------------------------------------------------------:|:--------------------------------------------------------:|:--------------------------------------------------------------:| +| | | | + +| Update basic Details Screen | Upload Documents Screen | Card Screen | +|:-------------------------------------------------------------------:|:---------------------------------------------------------------:|:-----------------------------------------------------:| +| | | | + +| Add New Card Screen | Update Card Screen | Merchants Screen | +|:-----------------------------------------------------------:|:----------------------------------------------------------:|:---------------------------------------------------------:| +| | | | + +| Profile Screen | Edit Profile Screen | Settings Screen | +|:--------------------------------------------------------:|:-----------------------------------------------------------:|:--------------------------------------------------------:| +| | | | + +| Notifications Screen | FAQ Screen | Change Password Screen | +|:--------------------------------------------------------------:|:----------------------------------------------------:|:--------------------------------------------------------------:| +| | | | diff --git a/docs/readmes/Linux.md b/docs/readmes/Linux.md new file mode 100644 index 000000000..f1135a744 --- /dev/null +++ b/docs/readmes/Linux.md @@ -0,0 +1,45 @@ +# Mobile Wallet Linux App Images + +| Login Screen | Create Passcode Screen | Create an Account Screen | +|:---------------------------------------------------:|:-------------------------------------------------------------:|:------------------------------------------------------:| +| | | | + +| Sign Up Screen | Home Screen | Transaction History page | +|:-------------------------------------------------------:|:-------------------------------------------------------:|:---------------------------------------------------------------:| +| | | | + +| Send Payment Screen | Review Transfer Screen | Payment Success Screen | +|:---------------------------------------------------------:|:-------------------------------------------------------------:|:-------------------------------------------------------------:| +| | | | + +| Request Screen | Request Money Screen | History Screen | +|:--------------------------------------------------------:|:------------------------------------------------------------:|:-------------------------------------------------------:| +| | | | + +| Transaction Details Screen | Payments SI Screen | Create New Instruction Screen | +|:-------------------------------------------------------------------:|:-------------------------------------------------------:|:------------------------------------------------------------------:| +| | | | + +| Instruction Details Screen | Payment Invoices Screen | Finance Accounts Screen | +|:-------------------------------------------------------------------:|:-------------------------------------------------------------:|:---------------------------------------------------------------:| +| | | | + +| Add Beneficiary Screen | Cards Screen | Add New Card Screen | +|:---------------------------------------------------------------:|:----------------------------------------------------:|:----------------------------------------------------------:| +| | | | + +| Edit Card Screen | Merchants Screen | KYC Screen | +|:---------------------------------------------------------:|:---------------------------------------------------------:|:---------------------------------------------------:| +| | | | + +| Update Basic Details Screen | Upload Screen | Profile Screen | +|:-------------------------------------------------------------------:|:------------------------------------------------------------:|:-----------------------------------------------------:| +| | | | + +| Edit Profile Screen | Settings Screen | Notifications Screen | +|:----------------------------------------------------------:|:--------------------------------------------------------:|:-----------------------------------------------------------:| +| | | | + +| FAQ Screen | Change Password Screen | +|:----------------------------------------------------:|:--------------------------------------------------------------:| +| | | diff --git a/docs/readmes/Windows.md b/docs/readmes/Windows.md new file mode 100644 index 000000000..6f43323e7 --- /dev/null +++ b/docs/readmes/Windows.md @@ -0,0 +1,45 @@ +# Mobile Wallet Windows App Images + +| Login Screen | Create Passcode Screen | Create an Account Screen | +|:-----------------------------------------------------:|:-------------------------------------------------------------:|:------------------------------------------------------:| +| | | | + +| Sign Up Screen | Home Screen | Transaction History page | +|:-------------------------------------------------------:|:----------------------------------------------------------:|:-----------------------------------------------------------------:| +| | | | + +| Send Payment Screen | Review Transfer Screen | Payment Success Screen | +|:-----------------------------------------------------------:|:-------------------------------------------------------------:|:-------------------------------------------------------------:| +| | | | + +| Request Screen | Request Money Screen | History Screen | +|:--------------------------------------------------------:|:------------------------------------------------------------:|:-------------------------------------------------------:| +| | | | + +| Transaction Details Screen | Payments SI Screen | Create New Instruction Screen | +|:-------------------------------------------------------------------:|:---------------------------------------------------------:|:--------------------------------------------------------------------:| +| | | | + +| Instruction Details Screen | Payment Invoices Screen | Finance Accounts Screen | +|:-------------------------------------------------------------------:|:---------------------------------------------------------------:|:---------------------------------------------------------------:| +| | | | + +| Add Beneficiary Screen | Cards Screen | Add New Card Screen | +|:---------------------------------------------------------------:|:----------------------------------------------------:|:----------------------------------------------------------:| +| | | | + +| Edit Card Screen | Merchants Screen | KYC Screen | +|:---------------------------------------------------------:|:---------------------------------------------------------:|:---------------------------------------------------:| +| | | | + +| Update Basic Details Screen | Upload Screen | Profile Screen | +|:-------------------------------------------------------------------:|:------------------------------------------------------:|:-------------------------------------------------------:| +| | | | + +| Edit Profile Screen | Settings Screen | Notifications Screen | +|:------------------------------------------------------------:|:--------------------------------------------------------:|:-------------------------------------------------------------:| +| | | | + +| FAQ Screen | Change Password Screen | +|:----------------------------------------------------:|:--------------------------------------------------------------:| +| | | From a4758ca6dba6f42dd6e21256c04e731aa1187147 Mon Sep 17 00:00:00 2001 From: kapmaurya <152150716+kapmaurya@users.noreply.github.com> Date: Tue, 26 Nov 2024 22:08:02 +0530 Subject: [PATCH 2/3] chore: Mifos Pay iOS Setup (#1820) --- .gitignore | 8 + .run/mifos-ios.run.xml | 7 + .run/mifospay-android.run.xml | 3 - .../src/main/kotlin/org/mifospay/Detekt.kt | 1 + gradle/wrapper/gradle-wrapper.properties | 7 +- mifospay-ios/Configuration/Config.xcconfig | 3 + mifospay-ios/iosApp.xcodeproj/project.pbxproj | 239 ++++++++++-------- .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../UserInterfaceState.xcuserstate | Bin 25056 -> 0 bytes .../xcschemes/xcschememanagement.plist | 5 - .../UserInterfaceState.xcuserstate | Bin 0 -> 156352 bytes .../xcschemes/iosApp.xcscheme | 32 --- .../xcschemes/xcschememanagement.plist | 2 +- .../AccentColor.colorset/Contents.json | 2 +- .../AppIcon.appiconset/Contents.json | 1 + .../AppIcon.appiconset/mifospay_logo_1024.png | Bin 0 -> 36837 bytes mifospay-ios/iosApp/ContentView.swift | 8 +- mifospay-ios/iosApp/Info.plist | 57 +++++ .../Preview Assets.xcassets/Contents.json | 2 +- .../iosApp/{iosAppApp.swift => iOSApp.swift} | 4 +- mifospay-shared/build.gradle.kts | 12 + .../src/iosMain/kotlin/MifosViewController.kt | 21 ++ 22 files changed, 252 insertions(+), 170 deletions(-) create mode 100644 .run/mifos-ios.run.xml create mode 100644 mifospay-ios/Configuration/Config.xcconfig delete mode 100644 mifospay-ios/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist delete mode 100644 mifospay-ios/iosApp.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate delete mode 100644 mifospay-ios/iosApp.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 mifospay-ios/iosApp.xcodeproj/project.xcworkspace/xcuserdata/kapilmaurya.xcuserdatad/UserInterfaceState.xcuserstate delete mode 100644 mifospay-ios/iosApp.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/iosApp.xcscheme rename mifospay-ios/iosApp.xcodeproj/xcuserdata/{apple.xcuserdatad => kapilmaurya.xcuserdatad}/xcschemes/xcschememanagement.plist (87%) create mode 100644 mifospay-ios/iosApp/Assets.xcassets/AppIcon.appiconset/mifospay_logo_1024.png create mode 100644 mifospay-ios/iosApp/Info.plist rename mifospay-ios/iosApp/{iosAppApp.swift => iOSApp.swift} (81%) create mode 100644 mifospay-shared/src/iosMain/kotlin/MifosViewController.kt diff --git a/.gitignore b/.gitignore index 510626127..829a53440 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,14 @@ bin/ gen/ out/ build/ +.externalNativeBuild +.cxx +iosApp/Podfile.lock +iosApp/Pods/* +iosApp/iosApp.xcworkspace/* +iosApp/iosApp.xcodeproj/* +!iosApp/iosApp.xcodeproj/project.pbxproj +mifospay-shared/mifospay-shared.podspec # Eclipse project files .classpath diff --git a/.run/mifos-ios.run.xml b/.run/mifos-ios.run.xml new file mode 100644 index 000000000..85ce3840b --- /dev/null +++ b/.run/mifos-ios.run.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.run/mifospay-android.run.xml b/.run/mifospay-android.run.xml index 2b81165ce..0ec6fa917 100644 --- a/.run/mifospay-android.run.xml +++ b/.run/mifospay-android.run.xml @@ -1,6 +1,5 @@ -