summaryrefslogtreecommitdiff
path: root/packages/SystemUI/AndroidManifest.xml
diff options
context:
space:
mode:
author Mike Lockwood <lockwood@android.com> 2011-03-10 12:12:31 -0500
committer Mike Lockwood <lockwood@android.com> 2011-03-10 14:35:33 -0500
commit024b4f14945bd2a285f730faa3a0fdbb6c47abc1 (patch)
tree6bb68d7fe716e9d5b41512e504f51216e6983822 /packages/SystemUI/AndroidManifest.xml
parent0837fde9fd9e29f8ef66a3fe00764e15a6f3d515 (diff)
Support for USB accessory URIs
If a USB accessory is attached and we have no application that supports it, display a dialog offering the user the option to visit the accessory's website if the accessory has a URI. Bug: 4073248 Change-Id: I30e2a802493fb6e203532a7f79402379c40bc3b8 Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r--packages/SystemUI/AndroidManifest.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml
index fee245f4b456..ecd6fb64f104 100644
--- a/packages/SystemUI/AndroidManifest.xml
+++ b/packages/SystemUI/AndroidManifest.xml
@@ -57,5 +57,14 @@
android:finishOnCloseSystemDialogs="true"
android:excludeFromRecents="true">
</activity>
+
+ <!-- started from UsbDeviceSettingsManager -->
+ <activity android:name=".usb.UsbAccessoryUriActivity"
+ android:exported="true"
+ android:permission="android.permission.MANAGE_USB"
+ android:theme="@*android:style/Theme.Holo.Dialog.Alert"
+ android:finishOnCloseSystemDialogs="true"
+ android:excludeFromRecents="true">
+ </activity>
</application>
</manifest>