DisplayIO
Create an instance of AATAdNetworksOptions including your AATDisplayIOOptions.
Provide this instance to the AATKitConfiguration while initialising AATKit.
AATKit will automatically forward the specified options to the DisplayIO SDK during ad loading.
AATKitConfiguration conf = new AATKitConfiguration(this);
AATKitAdNetworkOptions networkOptions = new AATKitAdNetworkOptions();
// [...]
DisplayIOOptions displayIOOptions = new DisplayIOOptions(50, 30)
// [...]
networkOptions.setDisplayIOBanner(displayIOOptions);
conf.setAdNetworkOptions(networkOptions);
Last updated