Kiit Utilities supplement the existing Kotlin standard library by offering a powerful set of general purpose Kotlin components that can be used for any application. Many of these components are located in the kiit-common project. However, there are a few components located in other projects. Refer to each utility component for more info.
Use the following settings in gradle for installing this component.
buildscript {
// Kotlin version currently being used
ext.kotlin_version = '1.8.22'
// Reference version
ext.kiit_version = '3.1.0'
// ...
}
repositories {
// Currently stored in Git Hub Packages.
maven {
url "https://maven.pkg.github.com/slatekit/kiit"
credentials {
username = System.getenv('GIT_PACKAGES_INSTALL_ACTOR')
password = System.getenv('GIT_PACKAGES_INSTALL_TOKEN')
}
}
// ...
}
dependencies {
// Other dependencies ...
implementation "dev.kiit:kiit-common:$kiit_version"
}
Links to this modules info. Click on any component icon below for example on how to use it.
Jar | kiit.common.jar |
Package | kiit.common |
Sources | /src/common/common/ |
Example | All Examples |
Requires | See build.gradle for more info. |
Many pre-built utilities to support your Server application or Android client.