This repository was archived by the owner on May 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
ghasem edited this page Aug 25, 2021
·
13 revisions
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")
}