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" /> |
| 21 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 22 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
| 23 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.DUMP" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 27 | <uses-permission android:name="android.permission.INTERNET" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 29 | <uses-permission android:name="android.permission.REBOOT" /> |
Dianne Hackborn | bdb0690 | 2010-01-04 18:49:11 -0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" /> |
Dan Egnor | 9d53382 | 2010-03-04 17:29:40 -0800 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.SET_ACTIVITY_WATCHER" /> |
Dan Egnor | 1e9eb67 | 2009-12-16 17:10:26 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.SET_ALWAYS_FINISH" /> |
| 33 | <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> |
| 34 | <uses-permission android:name="android.permission.SET_DEBUG_APP" /> |
| 35 | <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /> |
| 36 | <uses-permission android:name="android.permission.SET_PROCESS_LIMIT" /> |
| 37 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 38 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 39 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 40 | <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] | 41 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 42 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES" /> |
| 43 | <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] | 44 | |
| 45 | <application android:label="Dev Tools" |
| 46 | android:icon="@drawable/ic_launcher_devtools"> |
| 47 | |
| 48 | <uses-library android:name="android.test.runner" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 49 | |
| 50 | <activity android:name="Development" android:label="Dev Tools" |
| 51 | android:icon="@drawable/ic_launcher_devtools"> |
| 52 | <intent-filter> |
| 53 | <action android:name="android.intent.action.MAIN" /> |
| 54 | <category android:name="android.intent.category.LAUNCHER" /> |
| 55 | </intent-filter> |
| 56 | </activity> |
| 57 | <activity android:name="PackageBrowser" android:label="Package Browser"> |
| 58 | <intent-filter> |
| 59 | <action android:name="android.intent.action.MAIN" /> |
| 60 | <category android:name="android.intent.category.TEST" /> |
| 61 | </intent-filter> |
| 62 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 63 | <activity android:name="PackageSummary" android:label="Package Summary"> |
| 64 | </activity> |
| 65 | <activity android:name="ShowActivity" android:label="Activity"> |
| 66 | </activity> |
| 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:theme="@android:style/Theme.Light" |
| 81 | android:windowSoftInputMode="stateHidden"> |
Fred Quintana | ac657e0 | 2009-06-15 17:23:00 -0700 | [diff] [blame] | 82 | <intent-filter> |
| 83 | <action android:name="android.intent.action.MAIN" /> |
| 84 | <category android:name="android.intent.category.TEST" /> |
| 85 | </intent-filter> |
| 86 | </activity> |
| 87 | |
Fred Quintana | d7a3ea8 | 2009-11-03 17:18:33 -0800 | [diff] [blame] | 88 | <activity android:name="SyncAdapterDriver" android:label="Sync Tester" |
| 89 | android:theme="@android:style/Theme.Light"> |
| 90 | <intent-filter> |
| 91 | <action android:name="android.intent.action.MAIN" /> |
| 92 | <category android:name="android.intent.category.TEST" /> |
| 93 | </intent-filter> |
| 94 | </activity> |
| 95 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 96 | <activity android:name="DataList"> |
| 97 | </activity> |
| 98 | <activity android:name="Details"> |
| 99 | </activity> |
Robert Greenwalt | d53aa9b | 2009-10-06 15:12:40 -0700 | [diff] [blame] | 100 | <activity android:name="Connectivity" android:label="Connectivity" > |
| 101 | <intent-filter> |
| 102 | <action android:name="android.intent.action.MAIN" /> |
| 103 | <category android:name="android.intent.category.TEST" /> |
| 104 | </intent-filter> |
| 105 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 106 | <activity android:name="DevelopmentSettings" android:label="Development Settings" > |
| 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 | |
| 113 | <activity android:name="InstrumentationList" android:label="Instrumentation"> |
| 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 | |
| 120 | <activity android:name="MediaScannerActivity" android:label="Media Scanner"> |
| 121 | <intent-filter> |
| 122 | <action android:name="android.intent.action.MAIN" /> |
| 123 | <category android:name="android.intent.category.TEST" /> |
| 124 | </intent-filter> |
| 125 | </activity> |
Evan | ea55945 | 2010-09-20 02:24:58 -0600 | [diff] [blame] | 126 | <!-- |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 127 | <activity android:name="GLSTester" android:label="Google Login Service"> |
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> |
Evan | ea55945 | 2010-09-20 02:24:58 -0600 | [diff] [blame] | 133 | --> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 134 | <activity android:name="RunningProcesses" android:label="Running processes"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 135 | <intent-filter> |
| 136 | <action android:name="android.intent.action.MAIN" /> |
| 137 | <category android:name="android.intent.category.TEST" /> |
| 138 | </intent-filter> |
| 139 | </activity> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 140 | <activity android:name="ProcessInfo" android:label="Process Information"> |
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.VIEW" /> |
| 143 | <category android:name="android.intent.category.DEFAULT" /> |
| 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="AppHwConfigList" android:label="Applications Hw Configuration"> |
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.MAIN" /> |
| 150 | <category android:name="android.intent.category.TEST" /> |
| 151 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 152 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 153 | --> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 154 | <activity android:name="AppHwPref" android:label="Applications Hardware Preferences"> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 155 | <intent-filter> |
| 156 | <action android:name="android.intent.action.VIEW" /> |
| 157 | <category android:name="android.intent.category.DEFAULT" /> |
| 158 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 159 | </activity> |
| 160 | <activity android:name="PermissionDetails" android:label="Permission Info"> |
Suchi Amalapurapu | 25be4ba | 2009-06-11 16:05:10 -0700 | [diff] [blame] | 161 | <intent-filter> |
| 162 | <action android:name="com.android.development.VIEW_PERMISSION" /> |
| 163 | <category android:name="android.intent.category.DEFAULT" /> |
| 164 | </intent-filter> |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 165 | </activity> |
Dan Egnor | b4e39ae | 2010-01-07 21:17:24 -0800 | [diff] [blame] | 166 | |
Dan Egnor | d0225ee | 2009-12-09 16:30:23 -0800 | [diff] [blame] | 167 | <activity android:name="BadBehaviorActivity" android:label="Bad Behavior"> |
| 168 | <intent-filter> |
| 169 | <action android:name="android.intent.action.MAIN" /> |
| 170 | <category android:name="android.intent.category.TEST" /> |
| 171 | </intent-filter> |
| 172 | </activity> |
Dan Egnor | b4e39ae | 2010-01-07 21:17:24 -0800 | [diff] [blame] | 173 | <receiver android:name="BadBehaviorActivity$BadReceiver"> |
| 174 | <intent-filter> |
| 175 | <action android:name="com.android.development.BAD_BEHAVIOR" /> |
| 176 | </intent-filter> |
| 177 | </receiver> |
| 178 | <service android:name="BadBehaviorActivity$BadService" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 179 | </application> |
| 180 | </manifest> |