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