| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| assets/ | 03-May-2024 | - | 132 | 115 | ||
| common/ | 03-May-2024 | - | 12,277 | 6,546 | ||
| jni/ | 03-May-2024 | - | 1,234 | 849 | ||
| libs/ | 03-May-2024 | - | 166 | 144 | ||
| material_res/ | 03-May-2024 | - | ||||
| partner_support/ | 03-May-2024 | - | 2,352 | 1,459 | ||
| res/ | 03-May-2024 | - | 55,013 | 42,766 | ||
| src/com/android/tv/ | 03-May-2024 | - | 79,132 | 59,961 | ||
| tests/ | 03-May-2024 | - | 15,084 | 10,956 | ||
| tuner/ | 03-May-2024 | - | 34,112 | 26,121 | ||
| .gitignore | D | 03-May-2024 | 163 | 20 | 17 | |
| Android.bp | D | 03-May-2024 | 2.4 KiB | 97 | 80 | |
| AndroidManifest.xml | D | 03-May-2024 | 13.5 KiB | 301 | 243 | |
| OWNERS | D | 03-May-2024 | 38 | 3 | 2 | |
| README.md | D | 03-May-2024 | 763 | 36 | 24 | |
| build.gradle | D | 03-May-2024 | 2.8 KiB | 99 | 92 | |
| gradle.properties | D | 03-May-2024 | 843 | 24 | 20 | |
| open_source_project.LICENSE | D | 03-May-2024 | 11.1 KiB | 203 | 169 | |
| open_source_project.README | D | 03-May-2024 | 585 | 14 | 11 | |
| proguard.flags | D | 03-May-2024 | 2.7 KiB | 74 | 62 | |
| settings.gradle | D | 03-May-2024 | 832 | 26 | 22 | |
| 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 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```
open_source_project.README
1Live TV is an application to provide TV watching experience through Android TV input framework. 2 3Live TV is a system app for Android TV. It should be compiled with Android TV platform. 4 5How to build: 61. Download AOSP (equal or above L version). 7 https://source.android.com/source/building.html 8 (Developers using PDK can skip the step 1.) 92. Enable the feature PackageManager.FEATURE_LIVE_TV. 103. Put this project under Android platform repository if required. 114. Include this package inside platform build. 125. Build the platform. 13 https://source.android.com/source/building.html 14