• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

assets/14-Jan-2024-150133

common/15-Dec-2024-14,9928,281

interactive/SampleTvInteractiveAppService/14-Jan-2024-1,198976

jni/14-Jan-2024-1,374977

libs/14-Jan-2024-386292

material_res/14-Jan-2024-

partner_support/14-Jan-2024-2,2031,357

ratings/14-Jan-2024-1,2711,106

res/14-Jan-2024-54,44142,140

src/com/android/tv/14-Jan-2024-82,01162,128

tests/15-Dec-2024-24,26118,083

tuner/15-Dec-2024-46,64935,377

.gitignoreD14-Jan-2024163 2017

Android.bpD15-Dec-20243.5 KiB143120

AndroidManifest_all_inputs.xmlD15-Dec-20243.2 KiB7350

AndroidManifest_common.xmlD15-Dec-202413 KiB267214

AndroidManifest_non_passthrough.xmlD15-Dec-20243.8 KiB8562

OWNERSD15-Dec-202461 43

README.mdD14-Jan-2024884 3927

build.gradleD14-Jan-20242.9 KiB10288

com.android.tv.xmlD14-Jan-2024862 1715

gradle.propertiesD14-Jan-2024862 2521

lint-baseline.xmlD15-Dec-20246.7 KiB158143

proguard.flagsD14-Jan-20242.7 KiB7462

settings.gradleD14-Jan-2024939 2824

version.mkD14-Jan-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