Skip to Main Content
Player Logo
PlayerPlugins

setTimeout Plugin

The only explicit runtime plugin in the core Android plugin set, the SetTimeoutPlugin is a RuntimePlugin written to provide the global setTimeout method to the runtime.

Usage

In build.gradle
implementation "com.intuit.player.plugins:set-time-out:$PLAYER_VERSION"
In plugin implementation
class PluginThatNeedsSetTimeout : RuntimePlugin {

    override fun apply(runtime: Runtime) {
        SetTimeoutPlugin().apply(runtime)
        // do other plugin setup
    }

}