Skip to content

Commit ad78929

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents bfc0b39 + a593364 commit ad78929

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It allows you to save any type or list in the sharedpreferences and retrieve it
77

88
<b>Add jitpack.io to your root gradle file (project level)</b>
99

10-
```
10+
```groovy
1111
allprojects {
1212
repositories {
1313
...
@@ -17,7 +17,7 @@ allprojects {
1717
```
1818
<b>Add FastSave-Android to your app level build.gradle dependency</b>
1919

20-
```
20+
```groovy
2121
dependencies {
2222
implementation 'com.github.yehiahd:FastSave-Android:1.0.1'
2323
}
@@ -26,7 +26,7 @@ dependencies {
2626

2727
You have to initialize the FastSave library inside your application class :
2828

29-
````
29+
```java
3030
public class MyApplication extends Application {
3131
@Override
3232
public void onCreate() {
@@ -35,11 +35,11 @@ public class MyApplication extends Application {
3535
}
3636
}
3737

38-
````
38+
```
3939

4040
<b>Usage</b>
4141

42-
````
42+
```java
4343
FastSave.getInstance().saveInt(key,value); // For saving Integer value
4444
FastSave.getInstance().getInt(key); // For Getting Integer value
4545

@@ -62,4 +62,4 @@ FastSave.getInstance().getObjectList(key,classType); // For Getting Custom Objec
6262
//clear all sharedPrefereces
6363
FastSave.getInstance().clearSession();
6464

65-
````
65+
```

0 commit comments

Comments
 (0)