SuperAwesome
Create an instance of AATAdNetworksOptions including your AATSuperAwesomeOptions.
Provide this instance to the AATKitConfiguration while initialising AATKit.
AATKit will automatically forward the specified options to the SuperAwesome SDK during ad loading.
AATKitConfiguration conf = new AATKitConfiguration(this);
AATKitAdNetworkOptions networkOptions = new AATKitAdNetworkOptions();
// [...]
SuperAwesomeOptions superAwesomeOptions = new SuperAwesomeOptions(
new SuperAwesomeOptions.BannerOptions(),
new SuperAwesomeOptions.InterstitialAdOptions(),
new SuperAwesomeOptions.RewardedVideoOptions()
);
// [...]
networkOptions.setSuperAwesomeOptions(superAwesomeOptions);
conf.setAdNetworkOptions(networkOptions);
Last updated