⬇️Installing Our API
The perfect guide and official way to installing our API's into your project.
Maven (pom.xml)
Add this to your repositories:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
Add this to your dependencies:
<dependency>
<groupId>com.github.SyntaxSama</groupId>
<artifactId>StarAPI</artifactId>
<version>LATEST</version>
</dependency>
Gradle (build.gradle)
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.SyntaxSama:StarAPI:<version>'
}
Last updated