blob: f115f4245c2817025009f30834ddea29a6498a2c [file] [log] [blame]
Neal Nguyen1a44d5d2010-01-13 10:42:43 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.frameworks.servicestests">
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080019
Neal Nguyen3433d3c2010-02-02 17:09:00 -080020 <uses-permission android:name="android.permission.READ_LOGS" />
21 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
22 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080023
24 <application>
25 <uses-library android:name="android.test.runner" />
Svetoslav Ganov0b29a582010-04-16 18:52:49 -070026
27 <service android:name="com.android.server.AccessibilityManagerServiceTest$MyFirstMockAccessibilityService">
28 <intent-filter>
29 <action android:name="android.accessibilityservice.AccessibilityService"/>
30 </intent-filter>
31 </service>
32
33 <service android:name="com.android.server.AccessibilityManagerServiceTest$MySecondMockAccessibilityService">
34 <intent-filter>
35 <action android:name="android.accessibilityservice.AccessibilityService"/>
36 </intent-filter>
37 </service>
38
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080039 </application>
40
41 <instrumentation
42 android:name="android.test.InstrumentationTestRunner"
43 android:targetPackage="com.android.frameworks.servicestests"
44 android:label="Frameworks Services Tests" />
45</manifest>