I try to build a WatchKit Extension for my app...
I Updated the pods file to look like this:
platform:ios, \'8.0\'
use_frameworks!
source \'https://githu
The problem is when updating to cocoapods 0.36.x they are now creating Frameworks out of each pod library. See the blog post about it.
This causes issues with any pod library that is dependent on other pods and how its referencing them in their import statements, or how your code is importing them as well. The Pod process now turns them into frameworks and when they used to be imported as
#import "ThisOtherPodClass.h"
Now need to be imported as
#import