aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorSungsoo Lim <sungsoo@google.com>2014-06-07 14:57:49 +0900
committerSungsoo Lim <sungsoo@google.com>2014-06-09 20:52:25 +0900
commit8b9c05e03856c6a7c6ebf9e12820472cd1dacb28 (patch)
treede3770d5b9e09c87face6880ed6412ef43d40848 /AndroidManifest.xml
parente29e3903054c63ba7e3a3be15f4e166dc6b822ba (diff)
downloadTV-8b9c05e03856c6a7c6ebf9e12820472cd1dacb28.tar.gz
Enable TV recommendation at home launcher
- Recommend the last watched channel when the poster art is available to display. - Show a TV recommendation card when boot completed. - Hide the TV recommendation card when TV app Started. - Show again when the TV app stopped. - Update the recommendation card when the program is changed. Bug: 15473740 Change-Id: I261bc0590d71a4943589d60bc62566efc6639acb
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index be341a37..cfcd37e6 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -23,6 +23,7 @@
<uses-permission android:name="android.permission.ALL_EPG_DATA" />
<uses-permission android:name="android.permission.READ_EPG_DATA" />
<uses-permission android:name="android.permission.WRITE_EPG_DATA" />
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:label="@string/tv_app"
@@ -58,12 +59,11 @@
android:enabled="true">
</provider>
- <!-- Recommendataion notification disabled. See b/15485368. -->
- <service android:name="com.android.tv.notification.NotificationService"/>
- <receiver android:name="com.android.tv.notification.NotificationReceiver"
- android:enabled="false">
+ <service android:name="com.android.tv.notification.NotificationService" />
+
+ <receiver android:name="com.android.tv.receiver.NotificationReceiver">
<intent-filter>
- <action android:name="android.intent.action.BOOT_COMPLETED"/>
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name="com.android.tv.receiver.PackageIntentsReceiver">