Helps you manage your app states easier.
Memo Library is available through Maven Repository. To use it:
- Open the
build.gradle
file for your application. - Make sure that the
repositories
section includes Maven RepositorymavenCentral()
. For example:
allprojects {
repositories {
mavenCentral()
}
}
- Add the library to the
dependencies
section:
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")
// ...
}