1# Live TV 2 3__Live TV__ is the Open Source reference application for watching TV on Android TVs. 4 5## Source 6 7The source of truth is an internal google repository (aka google3) at 8cs/third_party/java_src/android_app/live_channels 9 10Changes are made in the google3 repository and automatically pushed here. 11 12The following files are only in the android repository and must be changed there. 13 14* *.mk 15* \*\*/lib/\*.\* 16 17## AOSP instructions 18 19To install LiveTv 20 21```bash 22echo "Compiling" 23m -j LiveTv 24echo "Installing" 25adb install -r ${OUT}/system/priv-app/LiveTv/LiveTv.apk 26 27``` 28 29If it is your first time installing LiveTv you will need to do 30 31```bash 32adb root 33adb remount 34adb push ${OUT}/system/priv-app/LiveTv/LiveTv.apk /system/priv-app/LiveTv/LiveTv.apk 35adb reboot 36```