diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2012-05-16 15:57:10 -0700 |
---|---|---|
committer | Svetoslav Ganov <svetoslavganov@google.com> | 2012-05-16 15:57:15 -0700 |
commit | 53e184d34e7c5b1a65c74fac55f9a635d8131dda (patch) | |
tree | ad730599bf1fb5e1465d4e4f0ff57eb35f8835a6 /core/tests/coretests/AndroidManifest.xml | |
parent | 6387c8a9cb52e6b7bb1a0fb40ee3b66c00ad6697 (diff) | |
download | frameworks_base-53e184d34e7c5b1a65c74fac55f9a635d8131dda.zip frameworks_base-53e184d34e7c5b1a65c74fac55f9a635d8131dda.tar.gz frameworks_base-53e184d34e7c5b1a65c74fac55f9a635d8131dda.tar.bz2 |
Accessibility service needs to request permission to be bound to.
1. Every accessibility services targeting JellyBean or higher has
to request a special permission for the system to bind to it.
Change-Id: I6e579326bdf3597f148d6c67317455701ec8af68
Diffstat (limited to 'core/tests/coretests/AndroidManifest.xml')
-rw-r--r-- | core/tests/coretests/AndroidManifest.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/tests/coretests/AndroidManifest.xml b/core/tests/coretests/AndroidManifest.xml index cadc895..dcd1bab 100644 --- a/core/tests/coretests/AndroidManifest.xml +++ b/core/tests/coretests/AndroidManifest.xml @@ -1039,7 +1039,8 @@ </intent-filter> </activity> - <service android:name="android.webkit.AccessibilityInjectorTest$MockAccessibilityService"> + <service android:name="android.webkit.AccessibilityInjectorTest$MockAccessibilityService" + android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> <intent-filter> <action android:name="android.accessibilityservice.AccessibilityService" /> </intent-filter> |