AndroidManifest.xml revision c8f83f46b68f783f627e4b4bd229f1281777b311
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"
22    package="com.android.launcher3">
23
24    <permission
25        android:name="com.android.launcher3.permission.PRELOAD_WORKSPACE"
26        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
27        android:protectionLevel="system|signature" />
28    <permission
29        android:name="com.android.launcher3.permission.INSTALL_SHORTCUT"
30        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
31        android:protectionLevel="dangerous"
32        android:label="@string/permlab_install_shortcut"
33        android:description="@string/permdesc_install_shortcut" />
34    <permission
35        android:name="com.android.launcher3.permission.UNINSTALL_SHORTCUT"
36        android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
37        android:protectionLevel="dangerous"
38        android:label="@string/permlab_uninstall_shortcut"
39        android:description="@string/permdesc_uninstall_shortcut"/>
40    <permission
41        android:name="com.android.launcher3.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.launcher3.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    <permission
54        android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS"
55        android:protectionLevel="signature"
56        />
57
58    <uses-permission android:name="android.permission.CALL_PHONE" />
59    <uses-permission android:name="android.permission.SET_WALLPAPER" />
60    <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
61    <uses-permission android:name="android.permission.VIBRATE" />
62    <uses-permission android:name="android.permission.BIND_APPWIDGET" />
63    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
64    <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
65    <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
66    <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
67    <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
68    <uses-permission android:name="com.android.launcher3.permission.RECEIVE_LAUNCH_BROADCASTS" />
69
70    <application
71        android:name="com.android.launcher3.LauncherApplication"
72        android:label="@string/application_name"
73        android:icon="@mipmap/ic_launcher_home"
74        android:hardwareAccelerated="true"
75        android:largeHeap="@bool/config_largeHeap"
76        android:supportsRtl="true">
77        <activity
78            android:name="com.android.launcher3.Launcher"
79            android:launchMode="singleTask"
80            android:clearTaskOnLaunch="true"
81            android:stateNotNeeded="true"
82            android:theme="@style/Theme"
83            android:windowSoftInputMode="adjustPan"
84            android:screenOrientation="nosensor">
85            <intent-filter>
86                <action android:name="android.intent.action.MAIN" />
87                <category android:name="android.intent.category.HOME" />
88                <category android:name="android.intent.category.DEFAULT" />
89                <category android:name="android.intent.category.MONKEY"/>
90            </intent-filter>
91        </activity>
92
93        <activity
94            android:name="com.android.launcher3.WidgetAdder"
95            android:label="@string/widget_adder"
96            android:icon="@mipmap/ic_launcher_home">
97            <intent-filter>
98                <action android:name="android.intent.action.MAIN" />
99                <category android:name="android.intent.category.DEFAULT" />
100                <category android:name="android.intent.category.LAUNCHER" />
101            </intent-filter>
102        </activity>
103
104        <activity
105            android:name="com.android.launcher3.ToggleWeightWatcher"
106            android:label="@string/toggle_weight_watcher"
107            android:icon="@mipmap/ic_launcher_home">
108            <intent-filter>
109                <action android:name="android.intent.action.MAIN" />
110                <category android:name="android.intent.category.DEFAULT" />
111                <category android:name="android.intent.category.LAUNCHER" />
112            </intent-filter>
113        </activity>
114
115        <activity
116            android:name="com.android.launcher3.WallpaperPickerActivity"
117            android:theme="@style/Theme.WallpaperPicker"
118            android:label="@string/pick_wallpaper"
119            android:icon="@mipmap/ic_launcher_wallpaper"
120            android:finishOnCloseSystemDialogs="true"
121            android:process=":wallpaper_chooser">
122            <intent-filter>
123                <action android:name="android.intent.action.SET_WALLPAPER" />
124                <category android:name="android.intent.category.DEFAULT" />
125            </intent-filter>
126        </activity>
127
128
129        <!-- Debugging tools -->
130        <activity
131            android:name="com.android.launcher3.MemoryDumpActivity"
132            android:theme="@android:style/Theme.NoDisplay"
133            android:label="@string/debug_memory_activity"
134            android:enabled="@bool/debug_memory_enabled"
135            android:excludeFromRecents="true"
136            android:icon="@mipmap/ic_launcher_home"
137            >
138            <intent-filter>
139                <action android:name="android.intent.action.MAIN" />
140                <category android:name="android.intent.category.DEFAULT" />
141                <category android:name="android.intent.category.LAUNCHER" />
142            </intent-filter>
143        </activity>
144
145        <service android:name="com.android.launcher3.MemoryTracker"
146            android:enabled="@bool/debug_memory_enabled"
147            >
148        </service>
149
150        <!-- Intent received used to prepopulate the default workspace. -->
151        <receiver
152            android:name="com.android.launcher3.PreloadReceiver"
153            android:permission="com.android.launcher3.permission.PRELOAD_WORKSPACE">
154            <intent-filter>
155                <action android:name="com.android.launcher3.action.PRELOAD_WORKSPACE" />
156            </intent-filter>
157        </receiver>
158
159        <!-- Intent received used to install shortcuts from other applications -->
160        <receiver
161            android:name="com.android.launcher3.InstallShortcutReceiver"
162            android:permission="com.android.launcher3.permission.INSTALL_SHORTCUT">
163            <intent-filter>
164                <action android:name="com.android.launcher3.action.INSTALL_SHORTCUT" />
165            </intent-filter>
166        </receiver>
167
168        <!-- Intent received used to uninstall shortcuts from other applications -->
169        <receiver
170            android:name="com.android.launcher3.UninstallShortcutReceiver"
171            android:permission="com.android.launcher3.permission.UNINSTALL_SHORTCUT">
172            <intent-filter>
173                <action android:name="com.android.launcher3.action.UNINSTALL_SHORTCUT" />
174            </intent-filter>
175        </receiver>
176
177        <!-- New user initialization; set up initial wallpaper -->
178        <receiver
179            android:name="com.android.launcher3.UserInitializeReceiver"
180            android:exported="false">
181            <intent-filter>
182                <action android:name="android.intent.action.USER_INITIALIZE" />
183            </intent-filter>
184        </receiver>
185
186        <receiver android:name="com.android.launcher3.PackageChangedReceiver" >
187            <intent-filter>
188                <action android:name="android.intent.action.PACKAGE_CHANGED"/>
189                <action android:name="android.intent.action.PACKAGE_REPLACED"/>
190                <action android:name="android.intent.action.PACKAGE_REMOVED"/>
191                <data android:scheme="package"></data>
192            </intent-filter>
193        </receiver>
194
195        <!-- The settings provider contains Home's data, like the workspace favorites -->
196        <provider
197            android:name="com.android.launcher3.LauncherProvider"
198            android:authorities="com.android.launcher3.settings"
199            android:exported="true"
200            android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
201            android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
202
203        <meta-data android:name="android.nfc.disable_beam_default"
204                       android:value="true" />
205    </application>
206</manifest>
207