diff options
| author | 2012-04-25 18:06:00 -0700 | |
|---|---|---|
| committer | 2012-08-20 13:44:34 -0700 | |
| commit | 4e68bd420b6cfdbeadb5e69aa6448665b2da762b (patch) | |
| tree | 4c76067723f8a24d5d1b9f366d939a949da97419 /packages/SystemUI/AndroidManifest.xml | |
| parent | bf5740e75efd87ae0213486e78e029403804c6f0 (diff) | |
Add UsbDebuggingManager and UsbDebuggingActivity
The UsbDebuggingManager listens to adbd requests and displays a dialog
when the public key authentification fails, for the user to confirm if it
wants to allow USB debugging from the attached host. If the user chooses
to always allow USB debugging, the UsbDebuggingManager writes the public
key to adbd's config file so that the public key authenfication succeeds
next time.
Change-Id: I115c828331d8e326c380844ee33915d5dff22260
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
| -rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index e13378fac81e..2eee31d4551f 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -132,6 +132,14 @@ android:excludeFromRecents="true"> </activity> + <!-- started from UsbDebuggingManager --> + <activity android:name=".usb.UsbDebuggingActivity" + android:permission="android.permission.MANAGE_USB" + android:theme="@*android:style/Theme.Holo.Dialog.Alert" + android:finishOnCloseSystemDialogs="true" + android:excludeFromRecents="true"> + </activity> + <!-- started from NetworkPolicyManagerService --> <activity android:name=".net.NetworkOverLimitActivity" |