Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.04 KB

README.md

File metadata and controls

35 lines (28 loc) · 1.04 KB

Kracken Store

License MIT

Kraken is a spin off of a project that is a spin off of another project. This is a Redux style state management store for Kotlin Multiplatform. This project essentially just makes threading not crash your app with multithreaded coroutines on native platforms. We use AtomicRef type to store the store data in order to allow the store to mutate state.

How to Add Kracken to Your Project

repositories {
    ... 
    maven("https://repos.awhb.dev")
    ...
}

add following in your commonMain source set

sourceSets {
  val commonMain by getting {
    dependencies {
      ...
      implementation("com.blackstone:kracken:0.2.0")
        ...
    }
  }
}
  ...

If you have things you'd like to see improved send me a PR or create an issue.