-
Notifications
You must be signed in to change notification settings - Fork 8
Getting Started
TheDude86 edited this page Oct 27, 2025
·
4 revisions
First thing to do is add the Apps API Dependency:
Note: Please update to the latest release version published on Github, I'm too lazy to update this page with every update.
repositories {
...
maven("https://jitpack.io") //Add this line to your "repositories" in your build.gradle.kts
}
dependencies {
compileOnly("com.github.thedude86:block:1.0.7")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") //You only need to add this dependency if you are using Java to implement this API
}
pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Dependency
<dependency>
<groupId>com.github.thedude86</groupId>
<artifactId>block</artifactId>
<version>1.0.7</version>
<scope>provided</scope>
</dependency>