NonceManager

class NonceManager


Manages a nonce and its event reporting for a single content playback session.

The below content playback session lifecycle methods must be accurately called in order to enable programmatic monetization.

Summary

Public functions

Unit

Notifies Google ad servers that a clickthrough on an ad has occurred during the given content playback session.

Unit

This function is deprecated.

Use sendPlaybackStart and sendPlaybackEnd instead.

Unit
sendAdTouch(motionEvent: MotionEvent!)

Notifies Google ad servers that a user touch or click on the ad other than a clickthrough (e.g. skip, mute, tap, etc.) has occurred during the given content playback session.

Unit

Notifies Google ad servers that playback for the given content playback session has ended.

Unit

Notifies Google ad servers that playback for the given content playback session has started.

Public properties

String!

Public functions

sendAdClick

fun sendAdClick(): Unit

Notifies Google ad servers that a clickthrough on an ad has occurred during the given content playback session.

sendAdImpression

fun sendAdImpression(): Unit

Notifies PAL that the first frame of the ad has been rendered, so that it can properly update or send signals.

This is a no-op and will be removed in a future release.

sendAdTouch

fun sendAdTouch(motionEvent: MotionEvent!): Unit

Notifies Google ad servers that a user touch or click on the ad other than a clickthrough (e.g. skip, mute, tap, etc.) has occurred during the given content playback session.

Parameters
motionEvent: MotionEvent!

The touch event triggered by the user.

sendPlaybackEnd

fun sendPlaybackEnd(): Unit

Notifies Google ad servers that playback for the given content playback session has ended. This should be called when playback ends (e.g. when the player reaches end of stream, or when the user exits playback mid-way, or when the user quits the app or page, or when advancing to the next content item in a playlist setting).

This method ends the asynchronous calls to Google servers started in sendPlaybackStart.

sendPlaybackStart

fun sendPlaybackStart(): Unit

Notifies Google ad servers that playback for the given content playback session has started. This should be called on "video player start". This may be in response to a user-initiated action (click-to-play) or an app or page initiated action (autoplay).

This method will start asynchronous calls to Google servers to collect signals needed for IVT monitoring and detection.

Public properties

nonce

val nonceString!