Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Getting Started

ghasem edited this page Aug 25, 2021 · 13 revisions

Download

Gradle Setup

If you're using of Gradle Groovy, add the following to your build.gradle file.

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

dependencies {
    implementation "com.github.jakode2020:kpy-core:$kpy_version"
}

If you're using of Gradle Kotlin, you can add the following to your build.gradle.kts.

dependencies {
    implementation("com.github.jakode2020:kpy-core:$kpy_version")
}

Getting Started

Clone this wiki locally