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

..--

assets/23-Mar-2024-150133

common/23-Mar-2024-14,9288,224

jni/23-Mar-2024-1,368954

libs/23-Mar-2024-382289

material_res/23-Mar-2024-

partner_support/23-Mar-2024-2,1971,347

ratings/23-Mar-2024-1,2671,103

res/23-Mar-2024-54,09241,929

src/com/android/tv/23-Mar-2024-80,77061,168

tests/23-Mar-2024-24,22017,988

tuner/23-Mar-2024-304,103254,357

Android.bpD23-Mar-20242.6 KiB10687

AndroidManifest.xmlD23-Mar-202413.6 KiB277218

OWNERSD23-Mar-202458 43

README.mdD23-Mar-2024884 3927

build.gradleD23-Mar-20242.9 KiB10288

com.android.tv.xmlD23-Mar-2024725 1413

gradle.propertiesD23-Mar-2024862 2521

proguard.flagsD23-Mar-20242.7 KiB7462

settings.gradleD23-Mar-2024939 2824

version.mkD23-Mar-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