Skip to content

Commit c240bb2

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 3faad22 + 2bc9029 commit c240bb2

File tree

4 files changed

+61
-5
lines changed

4 files changed

+61
-5
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Expected behavior**
18+
A clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
If applicable, add screenshots to help explain your problem.
22+
23+
**Desktop (please complete the following information):**
24+
- OS: [e.g. iOS]
25+
- Browser [e.g. chrome, safari]
26+
- Version [e.g. 22]
27+
28+
**Smartphone (please complete the following information):**
29+
- Device: [e.g. iPhone6]
30+
- OS: [e.g. iOS8.1]
31+
- Browser [e.g. stock browser, safari]
32+
- Version [e.g. 22]
33+
34+
**Additional context**
35+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#### Step 1. Add the JitPack repository to your build file
66
>**Add it in your root build.gradle at the end of repositories:**
7+
78
```
89
allprojects{
910
repositories {
@@ -192,8 +193,8 @@ apiServices.makeApiCall(apiName, requestMethod, parameters, jsonObject, hasToken
192193

193194
DBHelper dbHelper = new DBHelper(context);
194195
dbHelper.executeDatabaseOperation(tableName, operation, values, hasConditions, conditionalValues);
195-
```
196-
```java
196+
197+
197198
// for select query use this method
198199
//
199200
// parameters to be passed are as follows:
@@ -215,8 +216,8 @@ dbHelper.executeDatabaseOperation(tableName, operation, values, hasConditions, c
215216
// return - this method wull return Cursor with values or will return null
216217

217218
dbHelper.executeSelectQuery(tableName, values, hasConditions, conditionalValues);
218-
```
219-
```
219+
220+
220221
// for select query use this method
221222
//
222223
// parameters to be passed are as follows:
@@ -366,6 +367,7 @@ switchButton.setOnSwitchListener(new SwitchButton.OnSwitchListener()
366367
### MyLocation class
367368

368369
>**This class will get the current location of the user.**
370+
369371
```java
370372
// Declare this class globally inside your activity or class.
371373
private double latitude = 0.0, longitude = 0.0;
@@ -401,6 +403,7 @@ myLocation.getLocation(this, locationResult);
401403
### LocationAddress class
402404

403405
>**This class helps your to get the address of the current location or by using latitude and longitude.**
406+
404407
```java
405408
// use the following code to get the address of the latitude and longitude.
406409
// declare this inside onCreate() method or anywhere you would like to use it.
@@ -678,4 +681,4 @@ Utils.getSha512Hash(stringToHash);
678681
* @return string converted into hash value.
679682
**/
680683
Utils.getSha512Hash(byte[] dataToHash);
681-
```
684+
```

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-cayman

0 commit comments

Comments
 (0)