I'm building a dynamic framework. I'm seeing warnings in my test target and example app target.
<module-includes>
Umbrella header for module 'MyFramework' does not include header 'absolute path to a public header'
The header is included in the umbrella header like:
#import <MyFramework/PublicHeader.h>
It seems like the warning stems from the fact that the header is located at ./MyFramework/Module/PublicHeader.h
Is this an Xcode bug, or an issue with my framework target configuration?