2636275  Add CTS tests for the accessibility APIs - Eclair

Change-Id: I3c472b5a67e4298ee2cf8fbde1df354f40645195
diff --git a/tests/accessibilityservice/AndroidManifest.xml b/tests/accessibilityservice/AndroidManifest.xml
new file mode 100644
index 0000000..29164bc
--- /dev/null
+++ b/tests/accessibilityservice/AndroidManifest.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ -->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+          package="android.accessibilityservice.delegate">
+
+  <application>
+
+    <uses-library android:name="android.test.runner"/>
+
+    <service android:name=".DelegatingAccessibilityService"
+             android:label="@string/title_delegating_accessibility_service">
+      <intent-filter>
+        <action android:name="android.accessibilityservice.AccessibilityService"/>
+      </intent-filter>
+    </service>
+
+    <service android:name=".DelegatingAccessibilityService$DelegatingConnectionService"
+             android:exported="true"/>
+
+  </application>
+
+</manifest>