• Home
Name Date Size #Lines LOC

..--

assets/03-May-2024-132115

common/03-May-2024-12,2776,546

jni/03-May-2024-1,234849

libs/03-May-2024-166144

material_res/03-May-2024-

partner_support/03-May-2024-2,3521,459

res/03-May-2024-55,01342,766

src/com/android/tv/03-May-2024-79,13259,961

tests/03-May-2024-15,08410,956

tuner/03-May-2024-34,11226,121

.gitignoreD03-May-2024163 2017

Android.bpD03-May-20242.4 KiB9780

AndroidManifest.xmlD03-May-202413.5 KiB301243

OWNERSD03-May-202438 32

README.mdD03-May-2024763 3624

build.gradleD03-May-20242.8 KiB9992

gradle.propertiesD03-May-2024843 2420

open_source_project.LICENSED03-May-202411.1 KiB203169

open_source_project.READMED03-May-2024585 1411

proguard.flagsD03-May-20242.7 KiB7462

settings.gradleD03-May-2024832 2622

version.mkD03-May-20244.3 KiB12046

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