blob: c72d1063e8040efe96c7ffa568de78634c80e5a1 [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"
Romain Guy29344332011-10-05 12:30:36 -070022 package="com.android.launcher">
Jeff Hamilton95db7372010-02-11 16:25:50 -060023
24 <original-package android:name="com.android.launcher2" />
25
The Android Open Source Project31dd5032009-03-03 19:32:27 -080026 <permission
27 android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
28 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
29 android:protectionLevel="normal"
30 android:label="@string/permlab_install_shortcut"
31 android:description="@string/permdesc_install_shortcut" />
32 <permission
33 android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"
34 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
35 android:protectionLevel="normal"
36 android:label="@string/permlab_uninstall_shortcut"
37 android:description="@string/permdesc_uninstall_shortcut"/>
38 <permission
39 android:name="com.android.launcher.permission.READ_SETTINGS"
40 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
41 android:protectionLevel="normal"
42 android:label="@string/permlab_read_settings"
43 android:description="@string/permdesc_read_settings"/>
44 <permission
45 android:name="com.android.launcher.permission.WRITE_SETTINGS"
46 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
47 android:protectionLevel="normal"
48 android:label="@string/permlab_write_settings"
49 android:description="@string/permdesc_write_settings"/>
50
51 <uses-permission android:name="android.permission.CALL_PHONE" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080052 <uses-permission android:name="android.permission.SET_WALLPAPER" />
53 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
54 <uses-permission android:name="android.permission.VIBRATE" />
Jeff Sharkey6d3bfe52009-05-07 16:12:05 -070055 <uses-permission android:name="android.permission.BIND_APPWIDGET" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080056 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
57 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Adam Cohen76fc0852011-06-17 13:26:23 -070058
The Android Open Source Project31dd5032009-03-03 19:32:27 -080059 <application
Romain Guycf879042010-03-04 11:57:50 -080060 android:name="com.android.launcher2.LauncherApplication"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080061 android:label="@string/application_name"
Michael Jurka821856b2010-09-27 16:39:26 -070062 android:icon="@drawable/ic_launcher_home"
Michael Jurkaf2ff7d92011-06-14 14:38:49 -070063 android:hardwareAccelerated="@bool/config_hardwareAccelerated"
Adam Cohen56901eb2011-07-25 14:54:22 -070064 android:largeHeap="@bool/config_largeHeap">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080065 <activity
Romain Guycf879042010-03-04 11:57:50 -080066 android:name="com.android.launcher2.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080067 android:launchMode="singleTask"
68 android:clearTaskOnLaunch="true"
69 android:stateNotNeeded="true"
Adam Cohen81e2b9b2011-06-27 18:59:37 -070070 android:theme="@style/Theme"
Adam Cohen446e9402011-09-15 18:21:21 -070071 android:windowSoftInputMode="adjustPan"
72 android:screenOrientation="nosensor">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080073 <intent-filter>
74 <action android:name="android.intent.action.MAIN" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -070075 <category android:name="android.intent.category.HOME" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080076 <category android:name="android.intent.category.DEFAULT" />
Joe Onorato7b7a2cd2009-09-23 08:32:02 -070077 <category android:name="android.intent.category.MONKEY"/>
The Android Open Source Project31dd5032009-03-03 19:32:27 -080078 </intent-filter>
79 </activity>
80
81 <activity
Romain Guycf879042010-03-04 11:57:50 -080082 android:name="com.android.launcher2.WallpaperChooser"
Amith Yamasani6be59492011-06-21 13:03:34 -070083 style="@style/Theme.WallpaperPicker"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080084 android:label="@string/pick_wallpaper"
Romain Guye11f9f42009-11-08 15:31:40 -080085 android:icon="@drawable/ic_launcher_wallpaper"
Michael Jurka4e01d332011-10-13 06:07:30 -070086 android:finishOnCloseSystemDialogs="true"
87 android:process=":wallpaper_chooser">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080088 <intent-filter>
89 <action android:name="android.intent.action.SET_WALLPAPER" />
90 <category android:name="android.intent.category.DEFAULT" />
91 </intent-filter>
Adam Cohen4c3733f2011-01-18 17:27:00 -080092 <meta-data android:name="android.wallpaper.preview"
93 android:resource="@xml/wallpaper_picker_preview" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080094 </activity>
Romain Guy73b979d2009-06-09 12:57:21 -070095
Daniel Sandler4e1cd232011-05-12 00:06:32 -040096 <activity android:name="com.android.launcher2.RocketLauncher"
97 android:label="@string/dream_name"
Michael Jurka7446fee2011-05-26 15:21:24 -070098 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
Daniel Sandler4e1cd232011-05-12 00:06:32 -040099 <intent-filter>
100 <action android:name="android.intent.action.MAIN" />
101 <category android:name="android.intent.category.DEFAULT" />
102 <category android:name="android.intent.category.DREAM" />
103 </intent-filter>
104 </activity>
105
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800106 <!-- Intent received used to install shortcuts from other applications -->
107 <receiver
Romain Guycf879042010-03-04 11:57:50 -0800108 android:name="com.android.launcher2.InstallShortcutReceiver"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800109 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
110 <intent-filter>
111 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
112 </intent-filter>
113 </receiver>
114
115 <!-- Intent received used to uninstall shortcuts from other applications -->
116 <receiver
Romain Guycf879042010-03-04 11:57:50 -0800117 android:name="com.android.launcher2.UninstallShortcutReceiver"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800118 android:permission="com.android.launcher.permission.UNINSTALL_SHORTCUT">
119 <intent-filter>
120 <action android:name="com.android.launcher.action.UNINSTALL_SHORTCUT" />
121 </intent-filter>
122 </receiver>
123
124 <!-- The settings provider contains Home's data, like the workspace favorites -->
125 <provider
Romain Guycf879042010-03-04 11:57:50 -0800126 android:name="com.android.launcher2.LauncherProvider"
Joe Onoratoa5902522009-07-30 13:37:37 -0700127 android:authorities="com.android.launcher2.settings"
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800128 android:writePermission="com.android.launcher.permission.WRITE_SETTINGS"
129 android:readPermission="com.android.launcher.permission.READ_SETTINGS" />
130
Martijn Coenenb34811d2012-04-19 09:38:20 -0700131 <meta-data android:name="android.nfc.disable_beam_default"
132 android:value="true" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800133 </application>
134</manifest>