Skip to content

Commit e355988

Browse files
committed
Updated README.md
1 parent fd1b09c commit e355988

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
>**Add it in your root build.gradle at the end of repositories:**
1010
11-
```
11+
```markdown
1212
allprojects{
1313
repositories {
1414
...
@@ -19,7 +19,7 @@ allprojects{
1919

2020
#### Step 2. Add the dependency
2121

22-
```
22+
```markdown
2323
dependencies {
2424
...
2525
implementation 'com.github.amitjangid80:multiutillib:v1.2.6'
@@ -28,7 +28,7 @@ dependencies {
2828

2929
#### Using maven:
3030

31-
```
31+
```markdown
3232
<repositories>
3333
<repository>
3434
<id>jitpack.io</id>
@@ -75,7 +75,7 @@ public class ProjectApplication extends Application
7575

7676
### SharedPreferenceData
7777

78-
```java
78+
```markdown
7979
// use it in the activity or class you want to.
8080
SharedPreferenceData sharedPreferenceData = new SharedPreferenceData(context);
8181

@@ -613,7 +613,7 @@ UiUtils.setMaxLength(textInputEditText, maxLength);
613613
614614
**Usage**
615615

616-
```java
616+
```aidl
617617
/**
618618
* is Sd Card Mounted
619619
* this method will check if sd card is mounted or not
@@ -632,7 +632,7 @@ Utils.isSdCardMounted();
632632
* @return - it will return IMEI number if permission granted
633633
* else if no permission granted then will return empty string.
634634
**/
635-
Util.sgetIMEINumber(context);
635+
Utils.sgetIMEINumber(context);
636636
637637
638638
/**
@@ -703,3 +703,13 @@ Utils.getSha512Hash(stringToHash);
703703
**/
704704
Utils.getSha512Hash(byte[] dataToHash);
705705
```
706+
707+
###AnimUtil
708+
709+
>**This class can be used for animating activity or a view.**
710+
711+
**Usage**
712+
713+
```aidl
714+
715+
```

0 commit comments

Comments
 (0)