TizenBrew
February 17, 2026 · View on GitHub
Welcome to TizenBrew! TizenBrew is a way to experience modded websites (like TizenTube) and you can install newer apps without having to deal with Tizen Studio multiple times.
TizenBrew is a modular system, meaning you can install new modded websites and apps without having to mess with Tizen Studio.
Installation
To install TizenBrew, you need to have a Samsung TV (Tizen) device that has at least Tizen 3.0 (2017 or newer). There are four ways to install TizenBrew.
PREFERRED: Using TizenBrew Installer
This is the easiest method and works on every Samsung TV released since 2017.
1. Set the Host PC IP Address to your PCs IP
- Open Apps or App Settings on your Samsung TV.
- In the Apps panel, enter
12345using your remote control or the on-screen keypad. - A Developer Mode configuration popup will appear:
- Switch Developer mode to On.
- Under Host PC IP, enter your PCs IP.
- Click OK.
- Reboot your TV.
For more details, see Step 1 here under “Connecting the TV and SDK”.
2. Download and run TizenBrew Installer Desktop on your PC
- Download the latest executable file for your OS from the TizenBrewInstaller repository.
- Run the executable
If you're on macOS or Linux, you may need to run the file from the terminal and may need to run chmod +x tizenbrew-installer-os-arch
3. Install TizenBrew
- Click Install TizenBrew to install TizenBrew.
Note: If you're on Tizen 7 or above, you’ll be prompted to sign in to your Samsung account. Follow the on-screen instructions to create a Samsung certificate.
Did you know that you can install other apps (such as Jellyfin, Moonlight, etc.) from TizenBrew Installer? All you need is either the GitHub repository (in the format of
user/repoor WGT/TPK file (TV version of TizenBrew Installer only, you can install it from TizenBrew Installer Desktop.)
Other Installation Methods
Using USB Demo Package
This method is now deprecated as USB Demo Packages cannot be made anymore due to Samsung shutting down the service.
Using The Command Line
-
Install Tizen Studio by following the instructions here.
-
Connect to your TV using this guide.
-
Download the latest TizenBrew Widget from the releases page.
-
Check if the TV is connected by running:
sdb devices
Note that sdb is in C:\tizen-studio\tools on Windows and in ~/tizen-studio/tools on Linux.
- Install the TizenBrew Widget by running:
tizen install -n path/to/TizenBrewStandalone.wgt
Note that tizen is in C:\tizen-studio\tools\ide\bin on Windows and in ~/tizen-studio/tools/ide/bin on Linux.
-
Set the Host PC IP address to
127.0.0.1by following this -
You can now launch the TizenBrew app on your TV.
Resigning TizenBrew
To resign TizenBrew, you need to have Tizen Studio installed on your system. You can install Tizen Studio from here.
You also need to have a Samsung certificate. First connect to your TV by following this.
You can create a Samsung certificate by following this.
You'll also need to have the TizenBrew package. You can download the TizenBrew package from the releases page.
After you have all the requirements, you can resign TizenBrew by following these steps:
- Run the following command to resign TizenBrew:
tizen package -t wgt -s <profile name> -o ./resigned -- path/to/TizenBrewStandalone.wgt
# Example
# tizen package -t wgt -s MyProfile -o ./resigned -- path/to/TizenBrewStandalone.wgt
Note that tizen is in C:\tizen-studio\tools\ide\bin on Windows and in ~/tizen-studio/tools/ide/bin on Linux.
- Install the resigned TizenBrew by running:
tizen install -n ./resigned/TizenBrewStandalone.wgt
-
Set the Host PC IP address to
127.0.0.1by following this -
You can now launch the TizenBrew app on your TV.
Rebuilding TizenBrew
To rebuild TizenBrew, you need to have Node.js installed on your system. You can install Node.js from here. You also need to have Tizen Studio installed on your system. You can install Tizen Studio from here.
- Download the source code from the releases page (zip file) or clone the repository by running:
git clone https://github.com/reisxd/TizenBrew.git
- Open up the
tizenbrew-app/TizenBrew/service-nextgen/servicefolder in a terminal and run:
npm install
npx @vercel/ncc build index.js
- Open up the
tizenbrew-app/TizenBrew/tizenbrew-uifolder in a terminal and run:
npm install --force
npm run build
-
Open up Certificate Manager by going to
Tools > Certificate Managerand create a new Samsung certificate. See this for more information. -
Change the Host PC IP address to your PCs IP by following this
-
Open up the
tizenbrew-app/TizenBrewfolder in a terminal and run:
sdb connect <TV IP>
tizen build-web -e ".*" -e "node_modules/*" -e "package*.json" -e "yarn.lock"
tizen package -t wgt -o ./release -- .buildResult
tizen install -n ./release/TizenBrewStandalone.wgt
Note that tizen is in C:\tizen-studio\tools\ide\bin on Windows and in ~/tizen-studio/tools/ide/bin on Linux. Add it to your PATH or run it using C:\tizen-studio\tools\ide\bin\tizen on Windows and ~/tizen-studio/tools/ide/bin/tizen on Linux. sdb is in C:\tizen-studio\tools on Windows and in ~/tizen-studio/tools on Linux. Do the same for sdb as you did for tizen.
-
Change the Host PC IP address to
127.0.0.1by following this -
You can now launch the TizenBrew app on your TV.