The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -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.development" |
Allen Shen | a37307b | 2014-01-02 17:33:13 +0800 | [diff] [blame] | 19 | android:versionCode="1" android:versionName="1.0" |
| 20 | android:sharedUserId="android.uid.system"> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Robert Greenwalt | 40f7d44 | 2010-07-30 16:14:18 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 24 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
| 25 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.DUMP" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
HardCorePawn | fdc98b7 | 2013-01-24 00:49:08 +0100 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.INTERNET" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 32 | <uses-permission android:name="android.permission.REBOOT" /> |
Dianne Hackborn | bdb0690 | 2010-01-04 18:49:11 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" /> |
Dan Egnor | 9d53382 | 2010-03-04 17:29:40 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.SET_ALWAYS_FINISH" /> |
| 36 | <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> |
| 37 | <uses-permission android:name="android.permission.SET_DEBUG_APP" /> |
| 38 | <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /> |
| 39 | <uses-permission android:name="android.permission.SET_PROCESS_LIMIT" /> |
| 40 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 41 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 42 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Dianne Hackborn | 5b6b540 | 2012-07-12 14:50:08 -0700 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 44 | <uses-permission android:name="com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 45 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 46 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES" /> |
| 47 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 48 | |
| 49 | <application android:label="Dev Tools" |
Kenny Root | 0cba157 | 2010-11-23 09:58:50 -0800 | [diff] [blame] | 50 | android:icon="@mipmap/ic_launcher_devtools"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 51 | |
| 52 | <uses-library android:name="android.test.runner" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 53 | |
| 54 | <activity android:name="Development" android:label="Dev Tools" |
Kenny Root | 0cba157 | 2010-11-23 09:58:50 -0800 | [diff] [blame] | 55 | android:icon="@mipmap/ic_launcher_devtools"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.MAIN" /> |
Chirayu Desai | 8c2dd17 | 2012-08-07 19:19:33 +0530 | [diff] [blame] | 58 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 59 | </intent-filter> |
| 60 | </activity> |
| 61 | <activity android:name="PackageBrowser" android:label="Package Browser"> |
| 62 | <intent-filter> |
| 63 | <action android:name="android.intent.action.MAIN" /> |
| 64 | <category android:name="android.intent.category.TEST" /> |
| 65 | </intent-filter> |
| 66 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 67 | <activity android:name="PackageSummary" android:label="Package Summary"> |
| 68 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 69 | <activity android:name="AppPicker" |
| 70 | android:theme="@android:style/Theme.Dialog"> |
| 71 | </activity> |
| 72 | <activity android:name="PointerLocation" android:label="Pointer Location" |
| 73 | android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" |
| 74 | android:configChanges="keyboard|keyboardHidden|navigation|orientation"> |
| 75 | <intent-filter> |
| 76 | <action android:name="android.intent.action.MAIN" /> |
| 77 | <category android:name="android.intent.category.TEST" /> |
| 78 | </intent-filter> |
| 79 | </activity> |
| 80 | |
Fred Quintana | ac657e0 | 2009-06-15 17:23:00 -0700 | [diff] [blame] | 81 | <activity android:name="AccountsTester" android:label="AccountsTester" |
Fred Quintana | 5edd3d7 | 2010-03-08 13:13:53 -0800 | [diff] [blame] | 82 | android:windowSoftInputMode="stateHidden"> |
Fred Quintana | ac657e0 | 2009-06-15 17:23:00 -0700 | [diff] [blame] | 83 | <intent-filter> |
| 84 | <action android:name="android.intent.action.MAIN" /> |
| 85 | <category android:name="android.intent.category.TEST" /> |
| 86 | </intent-filter> |
| 87 | </activity> |
| 88 | |
Fred Quintana | d7a3ea8 | 2009-11-03 17:18:33 -0800 | [diff] [blame] | 89 | <activity android:name="SyncAdapterDriver" android:label="Sync Tester" |
| 90 | android:theme="@android:style/Theme.Light"> |
| 91 | <intent-filter> |
| 92 | <action android:name="android.intent.action.MAIN" /> |
| 93 | <category android:name="android.intent.category.TEST" /> |
| 94 | </intent-filter> |
| 95 | </activity> |
| 96 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 97 | <activity android:name="DataList"> |
| 98 | </activity> |
| 99 | <activity android:name="Details"> |
| 100 | </activity> |
Robert Greenwalt | d53aa9b | 2009-10-06 15:12:40 -0700 | [diff] [blame] | 101 | <activity android:name="Connectivity" android:label="Connectivity" > |
| 102 | <intent-filter> |
| 103 | <action android:name="android.intent.action.MAIN" /> |
| 104 | <category android:name="android.intent.category.TEST" /> |
| 105 | </intent-filter> |
| 106 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 107 | |
| 108 | <activity android:name="InstrumentationList" android:label="Instrumentation"> |
| 109 | <intent-filter> |
| 110 | <action android:name="android.intent.action.MAIN" /> |
| 111 | <category android:name="android.intent.category.TEST" /> |
| 112 | </intent-filter> |
| 113 | </activity> |
| 114 | |
Marco Nelissen | 3021e71 | 2010-04-05 14:59:45 -0700 | [diff] [blame] | 115 | <activity android:name="MediaScannerActivity" android:label="Media Provider"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 116 | <intent-filter> |
| 117 | <action android:name="android.intent.action.MAIN" /> |
| 118 | <category android:name="android.intent.category.TEST" /> |
| 119 | </intent-filter> |
| 120 | </activity> |
| 121 | |
HardCorePawn | fdc98b7 | 2013-01-24 00:49:08 +0100 | [diff] [blame] | 122 | <!-- |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 123 | <activity android:name="GLSTester" android:label="Google Login Service"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 124 | <intent-filter> |
| 125 | <action android:name="android.intent.action.MAIN" /> |
| 126 | <category android:name="android.intent.category.TEST" /> |
| 127 | </intent-filter> |
| 128 | </activity> |
HardCorePawn | fdc98b7 | 2013-01-24 00:49:08 +0100 | [diff] [blame] | 129 | --> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 130 | |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 131 | <activity android:name="RunningProcesses" android:label="Running processes"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 132 | <intent-filter> |
| 133 | <action android:name="android.intent.action.MAIN" /> |
| 134 | <category android:name="android.intent.category.TEST" /> |
| 135 | </intent-filter> |
| 136 | </activity> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 137 | <activity android:name="ProcessInfo" android:label="Process Information"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 138 | <intent-filter> |
| 139 | <action android:name="android.intent.action.VIEW" /> |
| 140 | <category android:name="android.intent.category.DEFAULT" /> |
| 141 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 142 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 143 | <!-- |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 144 | <activity android:name="AppHwConfigList" android:label="Applications Hw Configuration"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 145 | <intent-filter> |
| 146 | <action android:name="android.intent.action.MAIN" /> |
| 147 | <category android:name="android.intent.category.TEST" /> |
| 148 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 149 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 150 | --> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 151 | <activity android:name="AppHwPref" android:label="Applications Hardware Preferences"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 152 | <intent-filter> |
| 153 | <action android:name="android.intent.action.VIEW" /> |
| 154 | <category android:name="android.intent.category.DEFAULT" /> |
| 155 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 156 | </activity> |
| 157 | <activity android:name="PermissionDetails" android:label="Permission Info"> |
Suchi Amalapurapu | 25be4ba | 2009-06-11 16:05:10 -0700 | [diff] [blame] | 158 | <intent-filter> |
| 159 | <action android:name="com.android.development.VIEW_PERMISSION" /> |
| 160 | <category android:name="android.intent.category.DEFAULT" /> |
| 161 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 162 | </activity> |
Dan Egnor | b4e39ae | 2010-01-07 21:17:24 -0800 | [diff] [blame] | 163 | |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 164 | <activity android:name="BadBehaviorActivity" android:label="Bad Behavior"> |
| 165 | <intent-filter> |
| 166 | <action android:name="android.intent.action.MAIN" /> |
| 167 | <category android:name="android.intent.category.TEST" /> |
| 168 | </intent-filter> |
| 169 | </activity> |
Dan Egnor | b4e39ae | 2010-01-07 21:17:24 -0800 | [diff] [blame] | 170 | <receiver android:name="BadBehaviorActivity$BadReceiver"> |
| 171 | <intent-filter> |
| 172 | <action android:name="com.android.development.BAD_BEHAVIOR" /> |
| 173 | </intent-filter> |
| 174 | </receiver> |
| 175 | <service android:name="BadBehaviorActivity$BadService" /> |
Joe Onorato | 7d26cd1 | 2010-09-07 11:53:18 -0400 | [diff] [blame] | 176 | |
Dianne Hackborn | 5b6b540 | 2012-07-12 14:50:08 -0700 | [diff] [blame] | 177 | <activity android:name="CacheAbuser" android:label="Cache Abuser"> |
| 178 | <intent-filter> |
| 179 | <action android:name="android.intent.action.MAIN" /> |
| 180 | <category android:name="android.intent.category.TEST" /> |
| 181 | </intent-filter> |
| 182 | </activity> |
| 183 | |
Joe Onorato | 7d26cd1 | 2010-09-07 11:53:18 -0400 | [diff] [blame] | 184 | <activity android:name="ConfigurationViewer" android:label="Configuration"> |
| 185 | <intent-filter> |
| 186 | <action android:name="android.intent.action.MAIN" /> |
| 187 | <category android:name="android.intent.category.TEST" /> |
| 188 | </intent-filter> |
| 189 | </activity> |
| 190 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 191 | </application> |
| 192 | </manifest> |