Post not yet marked as solved
Post marked as unsolved with 2 replies, 1,352 views
I have created a swift package and successfully added some stub code, imported into another class
import PackageName
This all works as expected when building in debug configuration.
When I try to build for release using xcodebuild, it fails with
"no such module : PackageName"
Is there something missing that dictates how a package works in different configurations?
Thanks