Skip to content

Commit 1549088

Browse files
feat: Integrated new fineract-client with ktorfit
0 parents  commit 1549088

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2142
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Report a bug to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Screenshots**
20+
If applicable, add screenshots to help explain your problem.
21+
22+
**This issue addresses below module/s**
23+
- [ ] app
24+
- [ ] core
25+
- [ ] other/documentation
26+
27+
**Device Information:**
28+
- Device: [e.g. Pixel 4]
29+
- Version: [e.g. 8.0]
30+
31+
**Additional context**
32+
Add any other context about the problem here.
33+
34+
**Would you like to work on this issue**
35+
- [ ] Yes
36+
- [ ] No
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Feature request
3+
about: Request new feature to make sdk more optimized
4+
title: "[Feature]"
5+
labels: feature
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the new feature**
11+
A clear and concise description of what the feature is about.
12+
13+
**Is your feature request related to a problem? Please describe.**
14+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
15+
16+
**Describe the solution you'd like**
17+
A clear and concise description of what you want to happen.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
21+
22+
**Device Information:**
23+
Add device information if feature is device specific
24+
- Device: [e.g. Pixel XL4]
25+
- Version: [e.g. 8.0]
26+
27+
**Would you like to work on this issue**
28+
- [ ] Yes
29+
- [ ] No

.github/PULL_REQUEST_TEMPLATE.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Fixes #issue_number
2+
3+
**Description**
4+
Include a summary of the change and which issue is fixed. List any dependencies that are required for this change.
5+
6+
**Please Add Screenshots If there are any UI changes.**
7+
Use `<img width='333' alt='ss' src=''>` syntax to add screenshot.
8+
9+
**This app make changes to below module/s**
10+
- [ ] app
11+
- [ ] core
12+
- [ ] other/documentation
13+
14+
**Please make sure these boxes are checked before submitting your pull request - thanks!**
15+
- [ ] Build the project with `./gradlew build` to make sure you didn't break anything
16+
- [ ] Added the comments particularly in hard-to-understand areas
17+
- [ ] In case of multiple commits please squash them

.github/workflows/build_check.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Project Build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v1
16+
17+
# Cache dependencies
18+
- name: Cache Gradle packages
19+
uses: actions/cache@v2
20+
with:
21+
path: |
22+
~/.gradle/caches
23+
~/.gradle/wrapper
24+
key: ${{ runner.OS }}-gradle-cache-${{ hashFiles('**/build.gradle') }}
25+
26+
# jdk 17
27+
- name: Set Up JDK
28+
uses: actions/setup-java@v1
29+
with:
30+
java-version: 17
31+
32+
- name: Run test
33+
run: ./gradlew check
34+
35+
- name: Build
36+
run: ./gradlew build

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea
5+
.DS_Store
6+
/build
7+
/captures
8+
.externalNativeBuild
9+
.cxx

0 commit comments

Comments
 (0)