Android TV
Objective
This documentation explains how to:
- Enable developer mode
- Enable ADB debugging (USB / Wi-Fi)
- Connect to an Android screen via ADB
- Deploy an APK (e.g., Zebrix Agent)
- Configure the driver in Zebrix Control
Prerequisites
- Android screen (e.g., Samsung WAF – Android 14)
- PC with ADB installed
- Screen and PC on the same network
- APK file to deploy
1. Access system information
2. Enable developer mode
Click 7 times on “Build number”
Result:
- The message “You are now a developer” appears
- The “Developer options” menu is enabled
3. Access developer options
4. ADB connection
Open a command prompt and run:
adb connect IP:PORT
Example:
adb connect 172.20.21.32:5555
5. Verification
Use the following command to verify the connection between your PC and the screen:
adb devices
Expected result:
172.20.21.32:5555 device
⚠️ If “unauthorized”:
- Check the screen
- Accept the debugging request
6. APK installation
Use the following command to install the APK:
adb -s IP:PORT install "{path}\zebrix-agent.apk"
Update:
adb -s IP:PORT install -r "{path}\zebrix-agent.apk"
Once the installation is complete, launch the application on your screen.



