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 | a63ba59 | 2011-07-19 23:47:12 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 30 | |
Jeff Sharkey | 21c9c45 | 2011-06-07 12:26:43 -0700 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" /> |
| 32 | <uses-permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY" /> |
Jeff Sharkey | a63ba59 | 2011-07-19 23:47:12 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.MODIFY_NETWORK_ACCOUNTING" /> |
Jeff Sharkey | 2242af2 | 2011-06-16 13:43:18 -0700 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" /> |
Jeff Sharkey | 8fc27e8 | 2012-04-04 20:40:58 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Amith Yamasani | 2a00329 | 2012-08-14 18:25:45 -0700 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Amith Yamasani | db6a14c | 2012-10-17 21:16:52 -0700 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Amith Yamasani | 5b5aa40 | 2014-06-01 20:10:14 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.MANAGE_DEVICE_ADMINS" /> |
| 39 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 40 | <application> |
| 41 | <uses-library android:name="android.test.runner" /> |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 42 | |
Svetoslav Ganov | 53e184d | 2012-05-16 15:57:10 -0700 | [diff] [blame] | 43 | <service android:name="com.android.server.AccessibilityManagerServiceTest$MyFirstMockAccessibilityService" |
| 44 | android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 45 | <intent-filter> |
| 46 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 47 | </intent-filter> |
| 48 | </service> |
| 49 | |
Svetoslav Ganov | 53e184d | 2012-05-16 15:57:10 -0700 | [diff] [blame] | 50 | <service android:name="com.android.server.AccessibilityManagerServiceTest$MySecondMockAccessibilityService" |
| 51 | android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> |
Svetoslav Ganov | 0b29a58 | 2010-04-16 18:52:49 -0700 | [diff] [blame] | 52 | <intent-filter> |
| 53 | <action android:name="android.accessibilityservice.AccessibilityService"/> |
| 54 | </intent-filter> |
| 55 | </service> |
| 56 | |
Amith Yamasani | 5b5aa40 | 2014-06-01 20:10:14 -0700 | [diff] [blame] | 57 | <receiver android:name="com.android.server.devicepolicy.ApplicationRestrictionsTest$AdminReceiver" |
| 58 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 59 | <meta-data android:name="android.app.device_admin" |
| 60 | android:resource="@xml/device_admin_sample" /> |
| 61 | <intent-filter> |
| 62 | <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> |
| 63 | </intent-filter> |
| 64 | </receiver> |
| 65 | |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame] | 66 | </application> |
| 67 | |
| 68 | <instrumentation |
| 69 | android:name="android.test.InstrumentationTestRunner" |
| 70 | android:targetPackage="com.android.frameworks.servicestests" |
| 71 | android:label="Frameworks Services Tests" /> |
| 72 | </manifest> |