blob: cfdfe3c219452a0289ad04e989dcf9eaf798f722 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?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"
Dianne Hackborn12687cf2010-03-09 15:03:20 -080022 package="com.android.launcher"
23 android:sharedUserId="@string/sharedUserId"
24 >
Jeff Hamilton95db7372010-02-11 16:25:50 -060025
26 <original-package android:name="com.android.launcher2" />
27
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028 <permission
29 android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
30 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
31 android:protectionLevel="normal"
32 android:label="@string/permlab_install_shortcut"
33 android:description="@string/permdesc_install_shortcut" />
34 <permission
35 android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"
36 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
37 android:protectionLevel="normal"
38 android:label="@string/permlab_uninstall_shortcut"
39 android:description="@string/permdesc_uninstall_shortcut"/>
40 <permission
41 android:name="com.android.launcher.permission.READ_SETTINGS"
42 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
43 android:protectionLevel="normal"
44 android:label="@string/permlab_read_settings"
45 android:description="@string/permdesc_read_settings"/>
46 <permission
47 android:name="com.android.launcher.permission.WRITE_SETTINGS"
48 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
49 android:protectionLevel="normal"
50 android:label="@string/permlab_write_settings"
51 android:description="@string/permdesc_write_settings"/>
52
53 <uses-permission android:name="android.permission.CALL_PHONE" />
54 <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
55 <uses-permission android:name="android.permission.GET_TASKS" />
56 <uses-permission android:name="android.permission.READ_CONTACTS"/>
57 <uses-permission android:name="android.permission.SET_WALLPAPER" />
58 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
59 <uses-permission android:name="android.permission.VIBRATE" />
60 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jeff Sharkey6d3bfe52009-05-07 16:12:05 -070061 <uses-permission android:name="android.permission.BIND_APPWIDGET" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080062 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
63 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Adam Cohen76fc0852011-06-17 13:26:23 -070064
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065 <application
Romain Guycf879042010-03-04 11:57:50 -080066 android:name="com.android.launcher2.LauncherApplication"
Dianne Hackborn12687cf2010-03-09 15:03:20 -080067 android:process="@string/process"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068 android:label="@string/application_name"
Michael Jurka821856b2010-09-27 16:39:26 -070069 android:icon="@drawable/ic_launcher_home"
Michael Jurkaf2ff7d92011-06-14 14:38:49 -070070 android:hardwareAccelerated="@bool/config_hardwareAccelerated"
Adam Cohen56901eb2011-07-25 14:54:22 -070071 android:largeHeap="@bool/config_largeHeap">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080072 <activity
Romain Guycf879042010-03-04 11:57:50 -080073 android:name="com.android.launcher2.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080074 android:launchMode="singleTask"
75 android:clearTaskOnLaunch="true"
76 android:stateNotNeeded="true"
Adam Cohen81e2b9b2011-06-27 18:59:37 -070077 android:theme="@style/Theme"
Adam Cohen446e9402011-09-15 18:21:21 -070078 android:windowSoftInputMode="adjustPan"
79 android:screenOrientation="nosensor">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080080 <intent-filter>
81 <action android:name="android.intent.action.MAIN" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -070082 <category android:name="android.intent.category.HOME" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080083 <category android:name="android.intent.category.DEFAULT" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -070084 <category android:name="android.intent.category.MONKEY"/>
The Android Open Source Project31dd5032009-03-03 19:32:27 -080085 </intent-filter>
86 </activity>
87
88 <activity
Romain Guycf879042010-03-04 11:57:50 -080089 android:name="com.android.launcher2.WallpaperChooser"
Amith Yamasani6be59492011-06-21 13:03:34 -070090 style="@style/Theme.WallpaperPicker"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080091 android:label="@string/pick_wallpaper"
Romain Guye11f9f42009-11-08 15:31:40 -080092 android:icon="@drawable/ic_launcher_wallpaper"
Joe Onorato2ca0ae72009-11-10 13:14:13 -080093 android:finishOnCloseSystemDialogs="true">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080094 <intent-filter>
95 <action android:name="android.intent.action.SET_WALLPAPER" />
96 <category android:name="android.intent.category.DEFAULT" />
97 </intent-filter>
Adam Cohen4c3733f2011-01-18 17:27:00 -080098 <meta-data android:name="android.wallpaper.preview"
99 android:resource="@xml/wallpaper_picker_preview" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100 </activity>
Romain Guy73b979d2009-06-09 12:57:21 -0700101
Daniel Sandler4e1cd232011-05-12 00:06:32 -0400102 <activity android:name="com.android.launcher2.RocketLauncher"
103 android:label="@string/dream_name"
Michael Jurka7446fee2011-05-26 15:21:24 -0700104 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
Daniel Sandler4e1cd232011-05-12 00:06:32 -0400105 <intent-filter>
106 <action android:name="android.intent.action.MAIN" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <category android:name="android.intent.category.DREAM" />
109 </intent-filter>
110 </activity>
111
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800112 <!-- Intent received used to install shortcuts from other applications -->
113 <receiver
Romain Guycf879042010-03-04 11:57:50 -0800114 android:name="com.android.launcher2.InstallShortcutReceiver"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800115 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
116 <intent-filter>
117 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
118 </intent-filter>
119 </receiver>
120
121 <!-- Intent received used to uninstall shortcuts from other applications -->
122 <receiver
Romain Guycf879042010-03-04 11:57:50 -0800123 android:name="com.android.launcher2.UninstallShortcutReceiver"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124 android:permission="com.android.launcher.permission.UNINSTALL_SHORTCUT">
125 <intent-filter>
126 <action android:name="com.android.launcher.action.UNINSTALL_SHORTCUT" />
127 </intent-filter>
128 </receiver>
129
130 <!-- The settings provider contains Home's data, like the workspace favorites -->
131 <provider
Romain Guycf879042010-03-04 11:57:50 -0800132 android:name="com.android.launcher2.LauncherProvider"
Joe Onoratoa5902522009-07-30 13:37:37 -0700133 android:authorities="com.android.launcher2.settings"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800134 android:writePermission="com.android.launcher.permission.WRITE_SETTINGS"
135 android:readPermission="com.android.launcher.permission.READ_SETTINGS" />
136
137 </application>
138</manifest>