Installing the SDK
We provide a lightweight yet powerful and platform-agnostic SDK for you to hook into to track custom analytics along with controlling feature experiments with just a few lines of code.
-
Create a Server
Section titled “Create a Server”If you haven’t already created a server in Hoglin, follow this guide.
-
Install the SDK
Section titled “Install the SDK”Add the Hoglin SDK to your project:
build.gradle.kts repositories {maven {url = uri("https://maven.waypointstudios.com/releases")}}dependencies {implementation("gg.hoglin:sdk:1.2.0")}build.gradle repositories {maven {url 'https://maven.waypointstudios.com/releases'}}dependencies {implementation 'gg.hoglin:sdk:1.2.0'}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>
-
Next Steps
Section titled “Next Steps”Create your instance Learn how to set up and configure your Hoglin instance.