Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 1 | <?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 Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 19 | |
Neal Nguyen | 3433d3c | 2010-02-02 17:09:00 -0800 | [diff] [blame] | 20 | <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 Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 23 | |
| 24 | <application> |
| 25 | <uses-library android:name="android.test.runner" /> |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 26 | |
| 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 Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 39 | </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> |