Memo Library - failed to find resources

Viewed 15

I am implementing the Memo Library as stated in the documentation:

dependencies {
    def memo_version = "1.0.0"
    implementation("com.zeoflow:memo:$memo_version")
    implementation("com.zeoflow:memo-annotation:$memo_version")
    annotationProcessor("com.zeoflow:memo-compiler:$memo_version")
}

but when I am attempting to build the project this error pops-up.

Execution failed for task ':app:dataBindingMergeDependencyArtifactsDebug'.
> Could not resolve all files for configuration ':app:debugCompileClasspath'.
   > Could not find Memo.memo-lib:memo:unspecified.
     Required by:
         project :app > com.zeoflow:memo-annotation:1.0.0
1 Answers

This problem was reported in this issue and was fixed in this pull request.

You can try the following version 1.1.1 which includes the fix for the reported bug or the latest release which is currently 1.1.7.

Related