Describe the bug
Clone and run project in xcode 11.3 with Catalina MacOS and example project will not compile.
To Reproduce
Steps to reproduce the behavior:
- Clone/Download project
Open it in Xcode 11.3
Compile Example Project
- See error
Expected behavior
Example project must compile without error.

As hinted at in the comments, the project has dependencies which cannot be found.
According to the path that it is complaining about, its missing one or more Pods
So normally you would go into the project folder in your terminal and enter
pod installwhich will install the missing libraries.Once you have done this open the workspace (not the project) and then it should work.