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