The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | ** |
| 5 | ** Copyright 2008, The Android Open Source Project |
| 6 | ** |
| 7 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | ** you may not use this file except in compliance with the License. |
| 9 | ** You may obtain a copy of the License at |
| 10 | ** |
| 11 | ** http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ** |
| 13 | ** Unless required by applicable law or agreed to in writing, software |
| 14 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | ** See the License for the specific language governing permissions and |
| 17 | ** limitations under the License. |
| 18 | */ |
| 19 | --> |
| 20 | <manifest |
| 21 | xmlns:android="http://schemas.android.com/apk/res/android" |
Romain Guy | a45f664 | 2009-10-16 15:07:32 -0700 | [diff] [blame] | 22 | package="com.android.launcher2" |
Joe Onorato | 24a40dc | 2009-11-05 16:42:25 -0500 | [diff] [blame^] | 23 | > |
Romain Guy | a45f664 | 2009-10-16 15:07:32 -0700 | [diff] [blame] | 24 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 25 | <permission |
| 26 | android:name="com.android.launcher.permission.INSTALL_SHORTCUT" |
| 27 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 28 | android:protectionLevel="normal" |
| 29 | android:label="@string/permlab_install_shortcut" |
| 30 | android:description="@string/permdesc_install_shortcut" /> |
| 31 | <permission |
| 32 | android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" |
| 33 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 34 | android:protectionLevel="normal" |
| 35 | android:label="@string/permlab_uninstall_shortcut" |
| 36 | android:description="@string/permdesc_uninstall_shortcut"/> |
| 37 | <permission |
| 38 | android:name="com.android.launcher.permission.READ_SETTINGS" |
| 39 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 40 | android:protectionLevel="normal" |
| 41 | android:label="@string/permlab_read_settings" |
| 42 | android:description="@string/permdesc_read_settings"/> |
| 43 | <permission |
| 44 | android:name="com.android.launcher.permission.WRITE_SETTINGS" |
| 45 | android:permissionGroup="android.permission-group.SYSTEM_TOOLS" |
| 46 | android:protectionLevel="normal" |
| 47 | android:label="@string/permlab_write_settings" |
| 48 | android:description="@string/permdesc_write_settings"/> |
| 49 | |
| 50 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
| 51 | <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" /> |
| 52 | <uses-permission android:name="android.permission.GET_TASKS" /> |
| 53 | <uses-permission android:name="android.permission.READ_CONTACTS"/> |
| 54 | <uses-permission android:name="android.permission.SET_WALLPAPER" /> |
| 55 | <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" /> |
| 56 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 57 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Jeff Sharkey | 6d3bfe5 | 2009-05-07 16:12:05 -0700 | [diff] [blame] | 58 | <uses-permission android:name="android.permission.BIND_APPWIDGET" /> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 59 | <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /> |
| 60 | <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" /> |
Dianne Hackborn | 02e638e | 2009-08-20 19:33:42 -0700 | [diff] [blame] | 61 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 62 | <application |
| 63 | android:name="LauncherApplication" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 64 | android:label="@string/application_name" |
| 65 | android:icon="@drawable/ic_launcher_home"> |
| 66 | |
| 67 | <activity |
| 68 | android:name="Launcher" |
| 69 | android:launchMode="singleTask" |
| 70 | android:clearTaskOnLaunch="true" |
| 71 | android:stateNotNeeded="true" |
| 72 | android:theme="@style/Theme" |
Jeffrey Sharkey | d1d36ba | 2009-03-27 17:13:54 -0700 | [diff] [blame] | 73 | android:screenOrientation="nosensor" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 74 | android:windowSoftInputMode="stateUnspecified|adjustPan"> |
| 75 | <intent-filter> |
| 76 | <action android:name="android.intent.action.MAIN" /> |
Joe Onorato | 7b7a2cd | 2009-09-23 08:32:02 -0700 | [diff] [blame] | 77 | <category android:name="android.intent.category.HOME" /> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 78 | <category android:name="android.intent.category.DEFAULT" /> |
Joe Onorato | 7b7a2cd | 2009-09-23 08:32:02 -0700 | [diff] [blame] | 79 | <category android:name="android.intent.category.MONKEY"/> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 80 | </intent-filter> |
| 81 | </activity> |
| 82 | |
| 83 | <activity |
| 84 | android:name="WallpaperChooser" |
| 85 | android:label="@string/pick_wallpaper" |
Daniel Sandler | 9a60d54 | 2009-10-06 12:57:42 -0400 | [diff] [blame] | 86 | android:icon="@drawable/ic_launcher_wallpaper"> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 87 | <intent-filter> |
| 88 | <action android:name="android.intent.action.SET_WALLPAPER" /> |
| 89 | <category android:name="android.intent.category.DEFAULT" /> |
| 90 | </intent-filter> |
| 91 | </activity> |
Romain Guy | 73b979d | 2009-06-09 12:57:21 -0700 | [diff] [blame] | 92 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 93 | <!-- Enable system-default search mode for any activity in Home --> |
| 94 | <meta-data |
| 95 | android:name="android.app.default_searchable" |
| 96 | android:value="*" /> |
| 97 | |
| 98 | <!-- Intent received used to install shortcuts from other applications --> |
| 99 | <receiver |
| 100 | android:name=".InstallShortcutReceiver" |
| 101 | android:permission="com.android.launcher.permission.INSTALL_SHORTCUT"> |
| 102 | <intent-filter> |
| 103 | <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" /> |
| 104 | </intent-filter> |
| 105 | </receiver> |
| 106 | |
| 107 | <!-- Intent received used to uninstall shortcuts from other applications --> |
| 108 | <receiver |
| 109 | android:name=".UninstallShortcutReceiver" |
| 110 | android:permission="com.android.launcher.permission.UNINSTALL_SHORTCUT"> |
| 111 | <intent-filter> |
| 112 | <action android:name="com.android.launcher.action.UNINSTALL_SHORTCUT" /> |
| 113 | </intent-filter> |
| 114 | </receiver> |
| 115 | |
| 116 | <!-- The settings provider contains Home's data, like the workspace favorites --> |
| 117 | <provider |
| 118 | android:name="LauncherProvider" |
Joe Onorato | a590252 | 2009-07-30 13:37:37 -0700 | [diff] [blame] | 119 | android:authorities="com.android.launcher2.settings" |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 120 | android:writePermission="com.android.launcher.permission.WRITE_SETTINGS" |
| 121 | android:readPermission="com.android.launcher.permission.READ_SETTINGS" /> |
| 122 | |
| 123 | </application> |
| 124 | </manifest> |