| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| assets/ | 03-May-2024 | - | 150 | 133 | ||
| common/ | 03-May-2024 | - | 14,955 | 8,246 | ||
| interactive/SampleTvInteractiveAppService/ | 03-May-2024 | - | 1,198 | 976 | ||
| jni/ | 03-May-2024 | - | 1,374 | 977 | ||
| libs/ | 03-May-2024 | - | 386 | 292 | ||
| material_res/ | 03-May-2024 | - | ||||
| partner_support/ | 03-May-2024 | - | 2,203 | 1,357 | ||
| ratings/ | 03-May-2024 | - | 1,271 | 1,106 | ||
| res/ | 03-May-2024 | - | 54,217 | 42,003 | ||
| src/com/android/tv/ | 03-May-2024 | - | 81,701 | 61,930 | ||
| tests/ | 03-May-2024 | - | 24,285 | 18,064 | ||
| tuner/ | 03-May-2024 | - | 46,592 | 35,293 | ||
| .gitignore | D | 03-May-2024 | 163 | 20 | 17 | |
| Android.bp | D | 03-May-2024 | 3 KiB | 123 | 102 | |
| AndroidManifest.xml | D | 03-May-2024 | 14.4 KiB | 293 | 235 | |
| OWNERS | D | 03-May-2024 | 42 | 3 | 2 | |
| README.md | D | 03-May-2024 | 884 | 39 | 27 | |
| build.gradle | D | 03-May-2024 | 2.9 KiB | 102 | 88 | |
| com.android.tv.xml | D | 03-May-2024 | 862 | 17 | 15 | |
| gradle.properties | D | 03-May-2024 | 862 | 25 | 21 | |
| lint-baseline.xml | D | 03-May-2024 | 5.2 KiB | 127 | 114 | |
| proguard.flags | D | 03-May-2024 | 2.7 KiB | 74 | 62 | |
| settings.gradle | D | 03-May-2024 | 939 | 28 | 24 | |
| version.mk | D | 03-May-2024 | 4.3 KiB | 120 | 46 |
README.md
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