We're seeing a problem in our project where builds will intermittently fail when compiling LoggerConfiguration with the error:
umbrella header 'Willow.h' not found
umbrella header "Willow.h"
^
<unknown>:0: error: "could not build Objective-C module 'Willow'
Did some digging and found that some folks have found this can be fixed by moving the "Headers" build step up above "Compile Sources" in Build Phases fixes:
We're seeing a problem in our project where builds will intermittently fail when compiling LoggerConfiguration with the error:
Did some digging and found that some folks have found this can be fixed by moving the "Headers" build step up above "Compile Sources" in Build Phases fixes:
http://stackoverflow.com/a/35318277/719572
This is a small change to the project file that does just that.