41 lines
652 B
Markdown
41 lines
652 B
Markdown
Guys, I swear this is a serious library.
|
|
|
|
## Dependency
|
|
|
|
Current version: [](https://jitpack.io/#YouHaveTrouble/Entiddy)
|
|
|
|
### Maven
|
|
|
|
```xml
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
</repositories>
|
|
```
|
|
|
|
```xml
|
|
<dependency>
|
|
<groupId>com.github.YouHaveTrouble</groupId>
|
|
<artifactId>Entiddy</artifactId>
|
|
<version>VERSION</version>
|
|
</dependency>
|
|
```
|
|
|
|
### Gradle
|
|
|
|
```json
|
|
allprojects {
|
|
repositories {
|
|
...
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
```
|
|
|
|
```json
|
|
dependencies {
|
|
implementation 'com.github.YouHaveTrouble:Entiddy:v1.0'
|
|
}
|
|
``` |