Meta Bidding

Meta Bidding is enabled by default, If you are customizing your podfile, you can add Meta Bidding dependency by adding the following to your podfile:

Copy

pod 'AATKit/AATMetaBiddingAdapter'

AATMetaBiddingAdapter depends on GraviteRTB SDK

Set up Meta Bidding

Pass Meta identifier using AATKitAdNetworkOptions when initializing AATKit. See the example below:

Please contact your Account Manager to get the Meta_Platform_ID .

let conf = AATConfiguration() ... let metaOptions = AATMetaBiddingOptions(platformId: "<Meta_Platform_ID>") conf.adNetworksOptions = AATAdNetworksOptions(metaBiddingOptions: metaOptions) ... AATSDK.initAATKit(with: conf)

Last updated