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" |
Amith Yamasani | 4b2e934 | 2011-03-31 12:38:53 -0700 | [diff] [blame] | 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" /> |
Jeff Sharkey | b7342ac | 2011-04-25 23:44:11 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 24 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 25 | <uses-permission android:name="android.permission.BROADCAST_STICKY" /> |
| 26 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Jeff Sharkey | 9599cc5 | 2011-05-22 14:59:31 -0700 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" /> |
| 28 | <uses-permission android:name="android.permission.MANAGE_APP_TOKENS" /> |
Jeff Sharkey | 21c9c45 | 2011-06-07 12:26:43 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" /> |
| 30 | <uses-permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY" /> |
Jeff Sharkey | 2242af2 | 2011-06-16 13:43:18 -0700 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" /> |
Jeff Sharkey | 9599cc5 | 2011-05-22 14:59:31 -0700 | [diff] [blame] | 32 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 33 | <application> |
| 34 | <uses-library android:name="android.test.runner" /> |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 35 | |
| 36 | <service android:name="com.android.server.AccessibilityManagerServiceTest$MyFirstMockAccessibilityService"> |
| 37 | <intent-filter> |
| 38 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 39 | </intent-filter> |
| 40 | </service> |
| 41 | |
| 42 | <service android:name="com.android.server.AccessibilityManagerServiceTest$MySecondMockAccessibilityService"> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 45 | </intent-filter> |
| 46 | </service> |
| 47 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 48 | </application> |
| 49 | |
| 50 | <instrumentation |
| 51 | android:name="android.test.InstrumentationTestRunner" |
| 52 | android:targetPackage="com.android.frameworks.servicestests" |
| 53 | android:label="Frameworks Services Tests" /> |
| 54 | </manifest> |