Google Mobile Ads SDK

Google App ID

  • Google Mobile Ads SDK requires publishers to add their Google app ID to the Info.plist file of their Xcode projects. Please find your Google app ID within your Google account or contact our support.

  • Follow Google documentation to add your Google App ID to the Info.plist file.

AdMob Maximum Inline Banners Height

let conf = AATConfiguration()
...
let adMobOptions = AATAdMobOptions(inlineBannerMaxHeight: 50)
conf.adNetworksOptions = AATAdNetworksOptions(adMobOptions: adMobOptions)
...
AATSDK.initAATKit(with: conf)

DFP Maximum Inline Banners Height

let conf = AATConfiguration()
...
let dfpOptions = AATDFPOptions(inlineBannerMaxHeight: 50)
conf.adNetworksOptions = AATAdNetworksOptions(dfpOptions: dfpOptions)
...
AATSDK.initAATKit(with: conf)

Last updated