• Home
Name Date Size #Lines LOC

..--

assets/04-Jul-2025-150133

common/04-Jul-2025-14,9918,280

interactive/SampleTvInteractiveAppService/04-Jul-2025-1,198976

jni/04-Jul-2025-1,374977

libs/05-Jul-2025-386292

material_res/04-Jul-2025-

partner_support/04-Jul-2025-2,2031,357

ratings/04-Jul-2025-1,2711,106

res/04-Jul-2025-54,44142,140

src/com/android/tv/04-Jul-2025-82,01162,128

tests/04-Jul-2025-24,26018,082

tuner/04-Jul-2025-46,64835,376

.gitignoreD04-Jul-2025163 2017

Android.bpD04-Jul-20253.6 KiB144121

AndroidManifest_all_inputs.xmlD04-Jul-20253.2 KiB7350

AndroidManifest_common.xmlD04-Jul-202513 KiB267214

AndroidManifest_non_passthrough.xmlD04-Jul-20253.8 KiB8562

OWNERSD04-Jul-202542 32

README.mdD04-Jul-2025884 3927

build.gradleD04-Jul-20252.9 KiB10288

com.android.tv.xmlD04-Jul-2025862 1715

gradle.propertiesD04-Jul-2025862 2521

lint-baseline.xmlD04-Jul-20256.7 KiB158143

proguard.flagsD04-Jul-20252.7 KiB7462

settings.gradleD04-Jul-2025939 2824

version.mkD04-Jul-20254.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