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'
Set up Meta Bidding
Pass Meta identifier using AATKitAdNetworkOptions when initializing AATKit. See the example below:
let conf = AATConfiguration() ... let metaOptions = AATMetaBiddingOptions(platformId: "<Meta_Platform_ID>") conf.adNetworksOptions = AATAdNetworksOptions(metaBiddingOptions: metaOptions) ... AATSDK.initAATKit(with: conf)
Last updated