Helps you manage your app states easier.
Memo Library is available through Maven Repository. To use it:
- Open the
build.gradlefile for your application. - Make sure that the
repositoriessection includes Maven RepositorymavenCentral(). For example:
allprojects { repositories { mavenCentral() } }- Add the library to the
dependenciessection:
dependencies { // ... // declare version def version = "x.y.z" // Library Implementation implementation("com.zeoflow.flowly:process:$version") implementation("com.zeoflow.flowly:common:$version") implementation("com.zeoflow.flowly:runtime:$version") annotationProcessor("com.zeoflow.flowly:compiler:$version") // For kotlin projects use kapt instead of annotationProcessor kapt("com.zeoflow.flowly:compiler:$version") // ... }