I am following the instructions on the following page to integrate admob with my iOS application:
https://developers.google.com/mobile-ads-sdk/docs/admob/ios/quick-start#manually_using_the_sdk_download
Unfortunately, when I try:
@import GoogleMobileAds;
my project won't compile, with the error:
Use of '@import' when modules are disabled
I tried the following:
Using #import instead of @import. This does not work, because "GoogleMobileAds" does not show up. Instead I have to import the framework, which leads to many errors showing up, which xcode doesn't even display because there are too many.
Going to my target -> build settings -> Apple LLVM 6.0 - Language - Modules -> Enable Modules (C and Objective-C) and setting it to "YES". Even after doing this the same error appears.
How does one fix this ?
It seems that one needs to use #import , and specify each specific file as necessary. For example:
#import <GoogleMobileAds/GoogleMobileAds.h>
I guess the instructions on the Google site are out of date.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With