Collection of tools for coding in Kotlin
Go to file
InsanusMokrassar d2b6473095
Merge pull request #412 from InsanusMokrassar/0.20.39
0.20.39
2024-03-14 21:25:28 +06:00
.github/workflows update github workflows 2023-11-02 19:01:00 +06:00
android fixes in build 2023-09-06 19:15:09 +06:00
colors/common improve HEXAColorTests 2024-02-12 14:41:55 +06:00
common allow to create own Diff with constructor 2023-12-14 23:56:56 +06:00
coroutines small refactor in SpecialMutableStateFlow 2023-12-04 15:44:06 +06:00
crypto add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
dokka fixes in build 2023-09-06 19:15:09 +06:00
fsm add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
gradle Update libs.versions.toml 2024-03-14 10:58:08 +06:00
koin update and fix build 2023-11-02 19:00:35 +06:00
ktor add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
language_codes update dependencies and remove redundant usages of old IetfLanguageCode 2023-12-21 23:25:36 +06:00
matrix small matrix improvements 2023-11-29 20:33:06 +06:00
mime_types add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
pagination add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
repos improve of actualize all 2024-02-21 00:05:57 +06:00
resources update StringResource 2024-02-06 19:56:44 +06:00
safe_wrapper add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
selector/common add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
serialization make it possible to use encoder inside of serialize callback 2024-01-04 10:24:39 +06:00
startup update and fix build 2023-11-02 19:00:35 +06:00
.gitignore ignore kotlin-js-store folder 2021-12-28 21:19:47 +06:00
CHANGELOG.md Update CHANGELOG.md 2024-03-14 21:05:23 +06:00
LICENSE Initial commit 2020-09-15 17:57:00 +06:00
README.md Revert "add klock module" 2023-12-21 14:05:27 +06:00
_config.yml Set theme jekyll-theme-cayman 2020-12-05 18:57:46 +06:00
build.gradle update gradle publishing scripts 2023-12-09 20:38:44 +06:00
build_and_publish.sh update publishing scripts 2020-11-10 20:53:08 +06:00
changelog_parser.sh Update and rename changelog_info_retriever to changelog_parser.sh 2020-10-16 21:37:24 +06:00
defaultAndroidSettings.gradle update and fix build 2023-11-02 19:00:35 +06:00
extensions.gradle add support of linuxArm64 target 2023-10-20 21:53:27 +06:00
github_release.gradle update github release 2024-01-16 12:38:53 +06:00
gradle.properties Update gradle.properties 2024-03-14 10:44:57 +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
jvm.publish.gradle update gradle publishing scripts 2023-12-09 20:38:44 +06:00
jvm.publish.kpsb update gradle publishing scripts 2023-12-09 20:38:44 +06:00
local.migrate.folder.sh done migration 2023-08-08 18:45:36 +06:00
mppAndroidProject.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppJavaProject.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppJvmJsAndroidLinuxMingwLinuxArm64Project.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppJvmJsAndroidProject.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppJvmJsLinuxMingwLinuxArm64Project.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppJvmJsLinuxMingwProject.gradle update and fix build 2023-11-02 19:00:35 +06:00
mppProjectWithSerializationAndCompose.gradle update and fix build 2023-11-02 19:00:35 +06:00
publish.gradle update gradle publishing scripts 2023-12-09 20:38:44 +06:00
publish.kpsb update gradle publishing scripts 2023-12-09 20:38:44 +06:00
renovate.json Add renovate.json 2023-04-18 08:23:10 +00:00
settings.gradle add colors module 2024-01-04 19:53:43 +06:00
versions_plugin_setup.gradle add versions plugin 2023-06-27 16:46:45 +06:00

README.md

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