Skip to content

Commit e63049b

Browse files
committed
Adding some missing files.
Change-Id: I991d8bf815a7e57dc1cbad384e15aa21bef0c7c7
1 parent 53e184d commit e63049b

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

core/res/AndroidManifest.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1551,6 +1551,13 @@
15511551
android:description="@string/permdesc_bindInputMethod"
15521552
android:protectionLevel="signature" />
15531553

1554+
<!-- Must be required by an {@link android.accessibilityservice.AccessibilityService},
1555+
to ensure that only the system can bind to it. -->
1556+
<permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
1557+
android:label="@string/permlab_bindAccessibilityService"
1558+
android:description="@string/permdesc_bindAccessibilityService"
1559+
android:protectionLevel="signature" />
1560+
15541561
<!-- Must be required by a TextService (e.g. SpellCheckerService)
15551562
to ensure that only the system can bind to it. -->
15561563
<permission android:name="android.permission.BIND_TEXT_SERVICE"

core/res/res/values/strings.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,12 @@
845845
<string name="permdesc_bindInputMethod">Allows the holder to bind to the top-level
846846
interface of an input method. Should never be needed for normal apps.</string>
847847

848+
<!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
849+
<string name="permlab_bindAccessibilityService">bind to an accessibility service</string>
850+
<!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
851+
<string name="permdesc_bindAccessibilityService">Allows the holder to bind to the top-level
852+
interface of an accessibility service. Should never be needed for normal apps.</string>
853+
848854
<!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
849855
<string name="permlab_bindTextService">bind to a text service</string>
850856
<!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->

0 commit comments

Comments
 (0)