• Home
Name Date Size #Lines LOC

..--

assets/06-Sep-2024-150133

common/06-Sep-2024-14,9928,281

interactive/SampleTvInteractiveAppService/06-Sep-2024-1,198976

jni/06-Sep-2024-1,374977

libs/06-Sep-2024-386292

material_res/06-Sep-2024-

partner_support/06-Sep-2024-2,2031,357

ratings/06-Sep-2024-1,2711,106

res/06-Sep-2024-54,44142,140

src/com/android/tv/06-Sep-2024-82,01162,128

tests/06-Sep-2024-24,26118,083

tuner/06-Sep-2024-46,64935,377

.gitignoreD06-Sep-2024163 2017

Android.bpD06-Sep-20243.5 KiB143120

AndroidManifest_all_inputs.xmlD06-Sep-20243.2 KiB7350

AndroidManifest_common.xmlD06-Sep-202413 KiB267214

AndroidManifest_non_passthrough.xmlD06-Sep-20243.8 KiB8562

OWNERSD06-Sep-202461 43

README.mdD06-Sep-2024884 3927

build.gradleD06-Sep-20242.9 KiB10288

com.android.tv.xmlD06-Sep-2024862 1715

gradle.propertiesD06-Sep-2024862 2521

lint-baseline.xmlD06-Sep-20246.7 KiB158143

proguard.flagsD06-Sep-20242.7 KiB7462

settings.gradleD06-Sep-2024939 2824

version.mkD06-Sep-20244.3 KiB12046

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