1# Live TV 2 3__Live TV__ is the Open Source reference application for watching TV on Android 4TVs. 5 6Live TV is a system app for Android TV. It should be compiled with Android TV 7platform. 8 9How to build: 10 111. Enable the feature PackageManager.FEATURE_LIVE_TV. 122. Put this project under Android platform repository if required. 133. Include this package inside platform build. 144. Build the platform. https://source.android.com/source/building.html 15 16NOTE: This is a reference application and should not be used with further 17hardening. 18 19## Build just Live Tv 20 21To install LiveTv 22 23```bash 24echo "Compiling" 25m -j LiveTv 26echo "Installing" 27adb install -r ${OUT}/system/priv-app/LiveTv/LiveTv.apk 28 29``` 30 31If it is your first time installing LiveTv you will need to do 32 33```bash 34adb root 35adb remount 36adb push ${OUT}/system/priv-app/LiveTv/LiveTv.apk /system/priv-app/LiveTv/LiveTv.apk 37adb reboot 38``` 39