aboutsummaryrefslogtreecommitdiff
path: root/apps/tv/LeanbackCustomizer/AndroidManifest.xml
diff options
context:
space:
mode:
authorJoseph Johnson <simplex@google.com>2018-06-28 15:18:37 -0700
committerJoseph Johnson <simplex@google.com>2018-07-11 12:09:47 -0700
commit06d21d47fe9e3295ff6456e8934de7b1b0e9a86b (patch)
treebb84b0d68c908cbbf3bcff05bad81064ef154646 /apps/tv/LeanbackCustomizer/AndroidManifest.xml
parent834298826bd40d24fef748d7f5906f78e695f357 (diff)
downloadsample-06d21d47fe9e3295ff6456e8934de7b1b0e9a86b.tar.gz
TvSetupCustomization apps
Added 2 customization and validation apps. Partners can use these to validate the TV Setup partner customization interface. These apps are not included in the default system image builds. Also removes the existing SetupCustomizer, which is out-of-date. Bug: 78910364 Test: manual Change-Id: Icfb8dea4752100b0cff8d00c36d2e6b5ca0e90cb
Diffstat (limited to 'apps/tv/LeanbackCustomizer/AndroidManifest.xml')
-rw-r--r--apps/tv/LeanbackCustomizer/AndroidManifest.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/tv/LeanbackCustomizer/AndroidManifest.xml b/apps/tv/LeanbackCustomizer/AndroidManifest.xml
new file mode 100644
index 0000000..e931ca2
--- /dev/null
+++ b/apps/tv/LeanbackCustomizer/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.google.android.leanbacklauncher.partnercustomizer">
+
+ <uses-sdk
+ android:minSdkVersion="21"
+ android:targetSdkVersion="21" />
+
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <uses-permission android:name="android.permission.INTERNET" />
+
+ <application android:label="@string/app_label">
+
+ <receiver android:name=".PartnerReceiver">
+ <intent-filter>
+ <action android:name="com.google.android.leanbacklauncher.action.PARTNER_CUSTOMIZATION" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+
+ <intent-filter>
+ <action android:name="android.intent.action.PACKAGE_ADDED" />
+ <action android:name="android.intent.action.PACKAGE_REMOVED" />
+ <data android:scheme="package"/>
+ </intent-filter>
+ </receiver>
+
+ </application>
+</manifest>