Skip to content
This repository has been archived by the owner on Dec 28, 2021. It is now read-only.

Latest commit

 

History

History
41 lines (29 loc) · 1.04 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.04 KB

NO LONGER MAINTAINED - SWITCHED IN FAVOR OF LittleKt

Release

About

My personal library for use with Kotlin Multiplatform and Korge that I call Kiwi. Lots of the functionality is based off of Deepnights gameBase which I've used extensively (and loved) for awhile but just kotlinized.

Versioning

The version isn't following semver or some sort of structured versioning. You can grab a specific commit using the commit hash or just use the nightly. See [Install][] section.

Install

In your build.gradle.kts:

Add the Jitpack repository:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Add the dependency:

	dependencies {
        implementation 'com.lehaine.kiwi:kiwi:${versionOrCommitHash}'
    }

If you want the nightly / most recent commit:

	dependencies {
        implementation 'com.lehaine.kiwi:kiwi:master-SNAPSHOT'
    }