Meta Bidding

To support Meta Bidding (through GraviteRTB), it is needed to pass Meta indentifier using AATKitAdNetworkOptions when initializing AATKit. See the example below:

Please contact your Account Manager to get the PLATFORM_ID .

AATKitConfiguration config = new AATKitConfiguration(this);
AATKitAdNetworkOptions networkOptions = new AATKitAdNetworkOptions();

networkOptions.setMetaBiddingOptions(new MetaBiddingOptions("<PLATFORM_ID>"));

config.setAdNetworkOptions(networkOptions);
AATKit.init(config);

Last updated