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
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
-
—
dipen.desai22
Add a CommentI am facing same issue , when I switch to release build configuration and to try create build it show error "Module not found" in -Swift.h file. It works fine when I create build with configuration "Debug" but not Working for "Release"