This is our public Java (and Kotlin) SDK for interactions with Hoglin. Our SDK aims to be lightweight yet powerful and platform-agnostic, allowing you to start tracking custom Hoglin analytics with minimal lines of code.
Gradle build.gradle.kts
repositories {
maven {
url = uri("https://maven.waypointstudios.com/releases")
}
}
dependencies {
implementation("gg.hoglin:sdk:1.2.0")
}Maven pom.xml
<repositories>
<repository>
<id>waypoint-studios</id>
<name>Waypoint Studios</name>
<url>https://maven.waypointstudios.com/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>gg.hoglin</groupId>
<artifactId>sdk</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>Check out our full documentation for detailed usage of the SDK.
To clone the repository, use git clone https://github.com/WaypointStudios/hoglin-sdk.git
To then build the project, use ./gradlew clean build