I created a basic project with a swift package(let's call it "Foo") related to this project.
I tried printing "hello world" from Foo().text
from AppDelegate
and I get an error:
"Cannot call value of non-function type 'module<Foo>' "
I then tried to add a new struct or class to this package and I get an error: "Cannot find {ObjectName} in scope"
Tests inside Foo all passed.
It looks like I missing some step(s).