AATKit.Delegate
/**
* Notifies about AATKit events.
*/
interface Delegate {
/**
* Notifies that the AATKit has obtained ad rules.
*
* @param fromTheServer Indicates if the rules came from the server. It will return false if the currently used rules come from the [setInitialRules] method or the cached rules are used.
*/
fun aatkitObtainedAdRules(fromTheServer: Boolean)
/**
* Notifies that application's bundle ID was not recognized by the AddApptr server.
*/
fun aatkitUnknownBundleId()
}
Last updated