I\'m having staring issues with Module name spacing in a swift project.
I\'ve tried this in a new project and everything works fine:
I have 2 modules with which co
If using xcframework follow below steps to get rid of error :
find . -name "*.swiftinterface" -exec sed -i -e 's/frameworkName\.//g' {} \;
The above error only occurs in xcframework when a class named is same as the module name. Details on Apple forum at: https://forums.developer.apple.com/thread/123253