# Tizen plugin
The Tizen plugin adds platform-specific behavior and functionality, including remote control functionality, for Tizen. Tizen powers Samsung Smart TVs. Wowza provides [Smart TV help](/docs/wowza-flowplayer/smart-tv-sdk/getting-started/) to create Tizen apps.
## Installation
Include the `tizen` plugin next to the core player:
```html
```
## App development
If you are creating an application for Tizen, keep the following in mind (see below).
### Configure your app with necessary privileges
In `config.xml`, you can grant your app privileges.
Enable network access to be able to fetch videos:
```xml
*
```
Allow remote control access:
```xml
```
### Register keys
To make the OS emit the keypress events you need to register keys, add:
```js
tizen.tvinputdevice.registerKey('MediaPlayPause');
```
See more from the [Samsung documentation.](https://developer.samsung.com/smarttv/develop/guides/user-interaction/remote-control.html)
### Handle player exit
When the player is active, it will swallow the back-button presses. To handle this in your application, use the `flowplayer.tizen.events.EXIT_FULLSCREEN` event triggered by the player when the back button is pressed, to get out of player:
```js
player.on(flowplayer.tizen.events.EXIT_FULLSCREEN, () => {
// Handle your app state
})
```