Skip to content

Commit ef5c829

Browse files
Merge development into master (#19)
Using Fineract Client SDK 2.0.0
1 parent 573ffb4 commit ef5c829

File tree

90 files changed

+1051
-3104
lines changed

Some content is hidden

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

90 files changed

+1051
-3104
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

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
- name: Set Up JDK
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: 1.8
21+
22+
- name: Run test
23+
run: ./gradlew check
24+
25+
- name: Build
26+
run: ./gradlew build

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
*.iml
22
.gradle
33
/local.properties
4-
/.idea/caches
5-
/.idea/libraries
6-
/.idea/modules.xml
7-
/.idea/workspace.xml
8-
/.idea/navEditor.xml
9-
/.idea/assetWizardSettings.xml
4+
/.idea
105
.DS_Store
116
/build
127
/captures

.idea/.name

-1
This file was deleted.

.idea/codeStyles/Project.xml

-122
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

-5
This file was deleted.

.idea/dictionaries/chinm.xml

-10
This file was deleted.

.idea/gradle.xml

-21
This file was deleted.

.idea/jarRepositories.xml

-25
This file was deleted.

.idea/misc.xml

-9
This file was deleted.

.idea/runConfigurations.xml

-12
This file was deleted.

.idea/vcs.xml

-6
This file was deleted.

0 commit comments

Comments
 (0)