I have spent hours on this and still no luck.
I have a library (which is a pod) and it's using Google AdMob 7 as a dependency, let's say that it's named MyLib
Now when I want to add pod 'MyLib' to project A, it'll install it alongside its dependencies which include Google AdMob 7.
The problem is: When I test the library project which contains its source files, it works just fine but when I compile project A, it doesn't compile and it gives me a compiler error on the import line
@import GoogleMobileAds;
which is in the MyLib source files.
To make it simpler
Project -> Contains a pod I wrote which is MyLib -> Using AdMob 7 as a pod
Any idea why it's happening?
EDIT:
If anyone is interested, the same now happens with Google maps after they converted it to a Framework