AppEventListener

interface AppEventListener


A listener interface for app events triggered by ads. App events allow JavaScript within an ad to trigger events in the application. The ad can trigger the app event with a name and optional data. It is then up to the application to decide how to handle the event.

Summary

Public functions

Unit
onAppEvent(name: String!, data: String!)

Called when an app event occurs.

Public functions

onAppEvent

fun onAppEvent(name: String!, data: String!): Unit

Called when an app event occurs.

Parameters
name: String!

The name of the app event.

data: String!

Extra data included with the app event. The data can be null.