Skip to content

Commit

Permalink
feat: Integrated new fineract-client with ktorfit
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya-gupta99 committed Sep 19, 2024
0 parents commit 1549088
Show file tree
Hide file tree
Showing 60 changed files with 2,142 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
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
36 changes: 36 additions & 0 deletions .github/workflows/build_check.yml
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
9 changes: 9 additions & 0 deletions .gitignore
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
Loading

0 comments on commit 1549088

Please sign in to comment.