Zernikalos
Quick Start

Installing Zernikalos

How to install Zernikalos for Android, iOS, and Web

Prerequisites

  • Java (JDK 17 recommended)
  • A Git client
  • For Web: Node.js (LTS) and a bundler (Vite recommended)
  • For iOS: Xcode and CocoaPods

Installation by Platform

Add the repository to your settings.gradle.kts:

dependencyResolutionManagement {
  repositories {
    google()
    mavenCentral()
    maven(url = "https://maven.pkg.github.com/Zernikalos/Zernikalos") {
      // Note: might not be necessary for public packages, but GPR often requires it
      credentials {
        username = providers.gradleProperty("gpr.user").orNull
        password = providers.gradleProperty("gpr.key").orNull
      }
    }
  }
}

Then add the dependency in your build.gradle.kts:

implementation("dev.zernikalos:zernikalos:0.7.0")

Option B: Local Build

If you want to use the source code:

git clone https://github.com/Zernikalos/Zernikalos.git
cd Zernikalos
./gradlew publishToMavenLocal

On this page