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"> |
| 20 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 21 | <uses-permission android:name="android.permission.DUMP" /> |
| 22 | <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /> |
| 23 | <uses-permission android:name="android.permission.RESTART_PACKAGES" /> |
| 24 | <uses-permission android:name="android.permission.SET_ANIMATION_SCALE" /> |
| 25 | <uses-permission android:name="android.permission.SET_PROCESS_LIMIT" /> |
| 26 | <uses-permission android:name="android.permission.SET_ALWAYS_FINISH" /> |
| 27 | <uses-permission android:name="android.permission.SET_DEBUG_APP" /> |
| 28 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 29 | <uses-permission android:name="android.permission.INTERNET" /> |
| 30 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 31 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES" /> |
| 32 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser" /> |
| 33 | <uses-permission android:name="com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD" /> |
| 34 | |
| 35 | <application android:label="Dev Tools" |
| 36 | android:icon="@drawable/ic_launcher_devtools"> |
| 37 | |
| 38 | <uses-library android:name="android.test.runner" /> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 39 | |
| 40 | <activity android:name="Development" android:label="Dev Tools" |
| 41 | android:icon="@drawable/ic_launcher_devtools"> |
| 42 | <intent-filter> |
| 43 | <action android:name="android.intent.action.MAIN" /> |
| 44 | <category android:name="android.intent.category.LAUNCHER" /> |
| 45 | </intent-filter> |
| 46 | </activity> |
| 47 | <activity android:name="PackageBrowser" android:label="Package Browser"> |
| 48 | <intent-filter> |
| 49 | <action android:name="android.intent.action.MAIN" /> |
| 50 | <category android:name="android.intent.category.TEST" /> |
| 51 | </intent-filter> |
| 52 | </activity> |
| 53 | <activity android:name="ExceptionBrowser" android:label="Exception Browser"> |
| 54 | <intent-filter> |
| 55 | <action android:name="android.intent.action.MAIN" /> |
| 56 | <category android:name="android.intent.category.TEST" /> |
| 57 | </intent-filter> |
| 58 | </activity> |
| 59 | <activity android:name="StacktraceViewer" android:label="Stacktrace Viewer"/> |
| 60 | <activity android:name="PackageSummary" android:label="Package Summary"> |
| 61 | </activity> |
| 62 | <activity android:name="ShowActivity" android:label="Activity"> |
| 63 | </activity> |
| 64 | <activity android:name="AppPicker" |
| 65 | android:theme="@android:style/Theme.Dialog"> |
| 66 | </activity> |
| 67 | <activity android:name="PointerLocation" android:label="Pointer Location" |
| 68 | android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" |
| 69 | android:configChanges="keyboard|keyboardHidden|navigation|orientation"> |
| 70 | <intent-filter> |
| 71 | <action android:name="android.intent.action.MAIN" /> |
| 72 | <category android:name="android.intent.category.TEST" /> |
| 73 | </intent-filter> |
| 74 | </activity> |
| 75 | |
| 76 | <activity android:name="DataList"> |
| 77 | </activity> |
| 78 | <activity android:name="Details"> |
| 79 | </activity> |
| 80 | <activity android:name="DevelopmentSettings" android:label="Development Settings" > |
| 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 | |
| 87 | <activity android:name="InstrumentationList" android:label="Instrumentation"> |
| 88 | <intent-filter> |
| 89 | <action android:name="android.intent.action.MAIN" /> |
| 90 | <category android:name="android.intent.category.TEST" /> |
| 91 | </intent-filter> |
| 92 | </activity> |
| 93 | |
| 94 | <activity android:name="MediaScannerActivity" android:label="Media Scanner"> |
| 95 | <intent-filter> |
| 96 | <action android:name="android.intent.action.MAIN" /> |
| 97 | <category android:name="android.intent.category.TEST" /> |
| 98 | </intent-filter> |
| 99 | </activity> |
| 100 | |
| 101 | <activity android:name="GLSTester" android:label="Google Login Service"> |
| 102 | <intent-filter> |
| 103 | <action android:name="android.intent.action.MAIN" /> |
| 104 | <category android:name="android.intent.category.TEST" /> |
| 105 | </intent-filter> |
| 106 | </activity> |
| 107 | |
| 108 | <activity android:name="RunningProcesses" android:label="Running processes"> |
| 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 | <activity android:name="ProcessInfo" android:label="Process Information"> |
| 115 | <intent-filter> |
| 116 | <action android:name="android.intent.action.VIEW" /> |
| 117 | <category android:name="android.intent.category.DEFAULT" /> |
| 118 | </intent-filter> |
| 119 | </activity> |
| 120 | <!-- |
| 121 | <activity android:name="AppHwConfigList" android:label="Applications Hw Configuration"> |
| 122 | <intent-filter> |
| 123 | <action android:name="android.intent.action.MAIN" /> |
| 124 | <category android:name="android.intent.category.TEST" /> |
| 125 | </intent-filter> |
| 126 | </activity> |
| 127 | --> |
| 128 | <activity android:name="AppHwPref" android:label="Applications Hardware Preferences"> |
| 129 | <intent-filter> |
| 130 | <action android:name="android.intent.action.VIEW" /> |
| 131 | <category android:name="android.intent.category.DEFAULT" /> |
| 132 | </intent-filter> |
| 133 | </activity> |
Suchi Amalapurapu | 25be4ba | 2009-06-11 16:05:10 -0700 | [diff] [blame] | 134 | <activity android:name="PermissionDetails" android:label="Permission Info"> |
| 135 | <intent-filter> |
| 136 | <action android:name="com.android.development.VIEW_PERMISSION" /> |
| 137 | <category android:name="android.intent.category.DEFAULT" /> |
| 138 | </intent-filter> |
| 139 | </activity> |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 140 | </application> |
| 141 | </manifest> |