This is my private library which I continue to maintain when I am in my spare time in Kotlin programs. I have published it to make it easier to integrate into my projects. Everybody is welcome to contribute
Mustis Kotlin Library offers extensive possibilities to improve general development, solving everyday problems, preventing errors and increase productivity.
This is achieved by:
- Extension of many standard classes
- Creation of global variables and methods
- Offering helper classes
- Validators for Data Types
- Requirement Framework to easily check if certain requirements are met (will be implemented in the future)
- And much more will be implemented in the future...
- Add this in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the dependency (Use the tag 'Snapshot' until a stable release is created )
dependencies {
implementation 'com.github.mustii82:MKL:-SNAPSHOT'
}