Meta Bidding
To support Meta Bidding (through GraviteRTB), it is needed to pass Meta indentifier using AATKitAdNetworkOptions when initializing AATKit. See the example below:
AATKitConfiguration config = new AATKitConfiguration(this);
AATKitAdNetworkOptions networkOptions = new AATKitAdNetworkOptions();
networkOptions.setMetaBiddingOptions(new MetaBiddingOptions("<PLATFORM_ID>"));
config.setAdNetworkOptions(networkOptions);
AATKit.init(config);
Last updated