Skip to content

Setup

  1. Add Maven Central to your repositories if needed

    repositories {
        mavenCentral()
    }
    
  2. Add the desired dependencies to your module’s build.gradle file

val vortexVersion = "0.1.2"

// Main library
implementation("io.github.hristogochev:vortex:$vortexVersion")

// Koin integration
implementation("io.github.hristogochev:vortex-koin:$vortexVersion")

// Kodein integration
implementation("io.github.hristogochev:vortex-kodein:$vortexVersion")
[versions]
vortex = "0.1.2"

[libraries]
// Main library
vortex = { module = "io.github.hristogochev:vortex", version.ref = "vortex" }

// Koin integration
vortex-koin = { module = "io.github.hristogochev:vortex-koin", version.ref = "vortex" }

// Kodein integration
vortex-kodein = { module = "io.github.hristogochev:vortex-kodein", version.ref = "vortex" }

Current version here.