Collection of tools for coding in Kotlin
Go to file
2021-08-04 11:11:43 +06:00
.github/workflows add regular build workflow 2021-06-11 22:33:08 +06:00
android wrap with trycatch StateFlowBasedRecyclerViewAdapter listener 2021-06-17 13:46:22 +06:00
common MPPFile 2021-06-22 13:36:23 +06:00
coroutines hotfix 2021-06-28 00:31:46 +06:00
crypto copy base64 test in crypto 2021-01-23 12:02:19 +06:00
dokka update dependencies 2021-07-31 14:05:52 +06:00
fsm replace repos common extension for fsm 2021-06-20 17:11:51 +06:00
gradle/wrapper Update gradle-wrapper.properties 2021-07-10 00:08:17 +06:00
ktor doForAllWithCurrentPaging and fun interface for elements in ktor server 2021-06-14 22:04:39 +06:00
language_codes small reformat of code for language_codes 2021-08-04 11:11:43 +06:00
matrix update matrix test 2021-02-11 15:12:21 +06:00
mime_types remove kotlin android extensions 2020-11-23 17:27:52 +06:00
pagination doForAllWithCurrentPaging and fun interface for elements in ktor server 2021-06-14 22:04:39 +06:00
repos ExposedOneToManyKeyValueRepo fixes 2021-06-16 13:22:40 +06:00
selector/common add functionality to selector 2020-12-14 20:01:37 +06:00
serialization changelog upsert 2021-06-23 21:29:28 +06:00
_config.yml Set theme jekyll-theme-cayman 2020-12-05 18:57:46 +06:00
.gitignore successfuly add android project 2020-11-10 14:33:47 +06:00
.space.kts Init space CI 2021-06-26 13:38:30 +00:00
build_and_publish.sh update publishing scripts 2020-11-10 20:53:08 +06:00
build.gradle update dependencies 2021-07-31 14:05:52 +06:00
changelog_parser.sh Update and rename changelog_info_retriever to changelog_parser.sh 2020-10-16 21:37:24 +06:00
CHANGELOG.md add language_codes 2021-08-04 11:03:25 +06:00
defaultAndroidSettings.gradle hotfix 2021-04-21 02:02:25 +06:00
extensions.gradle rename template files 2021-04-20 18:36:53 +06:00
github_release.gradle Update github_release.gradle 2020-10-16 21:39:52 +06:00
gradle.properties start 0.5.18 2021-08-04 11:03:01 +06:00
gradlew init with pagination 2020-09-15 18:57:41 +06:00
gradlew.bat init with pagination 2020-09-15 18:57:41 +06:00
LICENSE Initial commit 2020-09-15 17:57:00 +06:00
mppAndroidProject.gradle rename template files 2021-04-20 18:36:53 +06:00
mppJavaProject.gradle update dependencies 2021-07-31 14:05:52 +06:00
mppProjectWithSerialization.gradle update dependencies 2021-07-31 14:05:52 +06:00
publish.gradle update publishing scripts 2021-03-05 16:43:50 +06:00
publish.kpsb update publishing scripts 2021-03-05 16:43:50 +06:00
README.md update readme 2021-01-14 20:55:32 +06:00
settings.gradle real creating of module language code -.- 2021-08-04 11:04:03 +06:00

MicroUtils

This is a library with collection of tools for working in Kotlin environment. First of all, this library collection is oriented to use next technologies:

Android environment

You always can look at the properties file to get information about current project dependencies, compile and build tools for Android target.

Projects

  • common contains common tools for platform which usually are absent out-of-the-box when you starting project
  • selector contains tools to use Selector interface with things like RecyclerView in android or other selection needs
  • coroutines is a module for Kotlin Coroutines with different things like subscribing on flows (onEach + launchIn shortcut :) )
  • ktor is a set of modules for clients and servers
  • mime_types is NOT lightweight set of MimeTypes with a lot of different objected and serializable (with Kotlin Serialization) mime types
  • pagination is a complex of modules (explanation in Complex modules structure section) for lightweight pagination
  • serialization is a collection of projects with serializers for kotlinx.serialization
  • repos is a complex of modules (explanation in Complex modules structure section) for KeyValue/OneToMany/CRUD repos created to be able to exclude some heavy dependencies when you need some simple and lightweight typical repositories

Complex modules structure

Most of complex modules are built with next hierarchy:

  • common submodule for API things which are common for all platforms
  • exposed submodule contains realizations for exposed tables
  • ktor submodule is usually unavailable directly, because it contains its own submodules for clients and servers
    • common part contains routes which are common for clients and servers
    • client submodule contains clients which are usually using UnifiedRequester to make requests using routes from ktor/common module and some internal logic of requests
    • server submodule (in most cases JVM-only) contains some extensions for Route instances which usually will give opportunity to proxy internet requests from ktor/client realization to some proxy object