Skip to content

Commit 5e1dc17

Browse files
refactor:
* update README.md again
1 parent 529c6a5 commit 5e1dc17

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@
22

33
> Let's access emoji like Enum and print it easily 😎
44
5-
# For Maven Dependency
5+
# For Gradle Dependency
6+
7+
```groovy
8+
repositories {
9+
maven { url "https://jitpack.io" }
10+
}
11+
12+
dependencies {
13+
implementation "com.github.PureFuncInc:emoji-jvm-string:1.0.0"
14+
}
15+
```
616

717
# For Gradle Kotlin Dependency
818

@@ -14,19 +24,18 @@ repositories {
1424
}
1525

1626
dependencies {
17-
implementation("net.purefunc:emoji-jvm-string:1.0.0")
27+
implementation("com.github.PureFuncInc:emoji-jvm-string:1.0.0")
1828
}
1929
```
2030

2131
# How to use
2232

2333
* Java
24-
2534
```java
35+
System.out.printf("Damn it! Who write these shit %s%s%s%n",Emoji.PILE_OF_POO,Emoji.PILE_OF_POO,Emoji.PILE_OF_POO);
2636
```
2737

2838
* Kotlin
29-
3039
```kotlin
3140
println("Damn it! Who write these shit ${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}${Emoji.PILE_OF_POO}")
3241
```

0 commit comments

Comments
 (0)