Skip to content

Installation

Amedeo Braggio edited this page Jan 30, 2026 · 1 revision

Installation

Engene is distributed through JitPack as a Gradle dependency.


✅ Prerequisites

  • Existing LibGDX project
  • Gradle build system
  • Java 17+

1️⃣ Add JitPack Repository

In your root build.gradle:

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

Or in settings.gradle:

dependencyResolutionManagement {
    repositories {
        mavenCentral()
        maven { url "https://jitpack.io" }
    }
}

2️⃣ Add Engene Dependency

In your core module build.gradle:

implementation 'com.github.enegne:Engene:241ae81508'

3️⃣ Sync Project

After editing Gradle:

./gradle build

Or reload from your IDE.

Clone this wiki locally