-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Integrated new fineract-client with ktorfit
- Loading branch information
0 parents
commit 1549088
Showing
60 changed files
with
2,142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: Bug report | ||
about: Report a bug to help us improve | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**This issue addresses below module/s** | ||
- [ ] app | ||
- [ ] core | ||
- [ ] other/documentation | ||
|
||
**Device Information:** | ||
- Device: [e.g. Pixel 4] | ||
- Version: [e.g. 8.0] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
|
||
**Would you like to work on this issue** | ||
- [ ] Yes | ||
- [ ] No |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Feature request | ||
about: Request new feature to make sdk more optimized | ||
title: "[Feature]" | ||
labels: feature | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the new feature** | ||
A clear and concise description of what the feature is about. | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
|
||
**Device Information:** | ||
Add device information if feature is device specific | ||
- Device: [e.g. Pixel XL4] | ||
- Version: [e.g. 8.0] | ||
|
||
**Would you like to work on this issue** | ||
- [ ] Yes | ||
- [ ] No |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Fixes #issue_number | ||
|
||
**Description** | ||
Include a summary of the change and which issue is fixed. List any dependencies that are required for this change. | ||
|
||
**Please Add Screenshots If there are any UI changes.** | ||
Use `<img width='333' alt='ss' src=''>` syntax to add screenshot. | ||
|
||
**This app make changes to below module/s** | ||
- [ ] app | ||
- [ ] core | ||
- [ ] other/documentation | ||
|
||
**Please make sure these boxes are checked before submitting your pull request - thanks!** | ||
- [ ] Build the project with `./gradlew build` to make sure you didn't break anything | ||
- [ ] Added the comments particularly in hard-to-understand areas | ||
- [ ] In case of multiple commits please squash them |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Project Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
# Cache dependencies | ||
- name: Cache Gradle packages | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.OS }}-gradle-cache-${{ hashFiles('**/build.gradle') }} | ||
|
||
# jdk 17 | ||
- name: Set Up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Run test | ||
run: ./gradlew check | ||
|
||
- name: Build | ||
run: ./gradlew build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx |
Oops, something went wrong.