Skip to content
Dmitry Berdnikov edited this page Jan 10, 2025 · 4 revisions

Elmslie

Elmslie is a minimalistic reactive implementation of TEA/ELM written in kotlin.
Named after George Grant Elmslie, a Scottish-born architect.

Download

Library is distributed through JitPack

Add repository in the root build.gradle

allprojects {
 repositories {
    mavenCentral()
 }
}

Add required modules:

  • Core - for pure kotlin ELM implementation

implementation 'money.vivid.elmslie:elmslie-core:{latest-version}'

  • Android - for android apps only, simplifies lifecycle handling

implementation 'money.vivid.elmslie:elmslie-android:{latest-version}'