Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
assets/ | 03-May-2024 | - | 150 | 133 | ||
common/ | 03-May-2024 | - | 14,952 | 8,244 | ||
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,092 | 41,929 | ||
src/com/android/tv/ | 03-May-2024 | - | 80,831 | 61,206 | ||
tests/ | 03-May-2024 | - | 24,269 | 18,035 | ||
tuner/ | 03-May-2024 | - | 45,883 | 34,766 | ||
.gitignore | D | 03-May-2024 | 163 | 20 | 17 | |
Android.bp | D | 03-May-2024 | 3.7 KiB | 135 | 114 | |
AndroidManifest.xml | D | 03-May-2024 | 14 KiB | 284 | 225 | |
OWNERS | D | 03-May-2024 | 61 | 4 | 3 | |
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 | 18.3 KiB | 423 | 383 | |
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