AndroidManifest.xml revision 8b0405888f69dfe36fec10811e2ef51ceb06cb59
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.ToggleWeightWatcher"
95            android:label="@string/toggle_weight_watcher"
96            android:enabled="@bool/debug_memory_enabled"
97            android:icon="@mipmap/ic_launcher_home">
98            <intent-filter>
99                <action android:name="android.intent.action.MAIN" />
100                <category android:name="android.intent.category.DEFAULT" />
101                <category android:name="android.intent.category.LAUNCHER" />
102            </intent-filter>
103        </activity>
104
105        <activity
106            android:name="com.android.launcher3.WallpaperPickerActivity"
107            android:theme="@style/Theme.WallpaperPicker"
108            android:label="@string/pick_wallpaper"
109            android:icon="@mipmap/ic_launcher_wallpaper"
110            android:finishOnCloseSystemDialogs="true"
111            android:process=":wallpaper_chooser">
112            <intent-filter>
113                <action android:name="android.intent.action.SET_WALLPAPER" />
114                <category android:name="android.intent.category.DEFAULT" />
115            </intent-filter>
116        </activity>
117
118
119        <!-- Debugging tools -->
120        <activity
121            android:name="com.android.launcher3.MemoryDumpActivity"
122            android:theme="@android:style/Theme.NoDisplay"
123            android:label="@string/debug_memory_activity"
124            android:enabled="@bool/debug_memory_enabled"
125            android:excludeFromRecents="true"
126            android:icon="@mipmap/ic_launcher_home"
127            >
128            <intent-filter>
129                <action android:name="android.intent.action.MAIN" />
130                <category android:name="android.intent.category.DEFAULT" />
131                <category android:name="android.intent.category.LAUNCHER" />
132            </intent-filter>
133        </activity>
134
135        <service android:name="com.android.launcher3.MemoryTracker"
136            android:enabled="@bool/debug_memory_enabled"
137            >
138        </service>
139
140        <!-- Intent received used to prepopulate the default workspace. -->
141        <receiver
142            android:name="com.android.launcher3.PreloadReceiver"
143            android:permission="com.android.launcher3.permission.PRELOAD_WORKSPACE">
144            <intent-filter>
145                <action android:name="com.android.launcher3.action.PRELOAD_WORKSPACE" />
146            </intent-filter>
147        </receiver>
148
149        <!-- Intent received used to install shortcuts from other applications -->
150        <receiver
151            android:name="com.android.launcher3.InstallShortcutReceiver"
152            android:permission="com.android.launcher3.permission.INSTALL_SHORTCUT">
153            <intent-filter>
154                <action android:name="com.android.launcher3.action.INSTALL_SHORTCUT" />
155            </intent-filter>
156        </receiver>
157
158        <!-- Intent received used to uninstall shortcuts from other applications -->
159        <receiver
160            android:name="com.android.launcher3.UninstallShortcutReceiver"
161            android:permission="com.android.launcher3.permission.UNINSTALL_SHORTCUT">
162            <intent-filter>
163                <action android:name="com.android.launcher3.action.UNINSTALL_SHORTCUT" />
164            </intent-filter>
165        </receiver>
166
167        <!-- New user initialization; set up initial wallpaper -->
168        <receiver
169            android:name="com.android.launcher3.UserInitializeReceiver"
170            android:exported="false">
171            <intent-filter>
172                <action android:name="android.intent.action.USER_INITIALIZE" />
173            </intent-filter>
174        </receiver>
175
176        <receiver android:name="com.android.launcher3.PackageChangedReceiver" >
177            <intent-filter>
178                <action android:name="android.intent.action.PACKAGE_CHANGED"/>
179                <action android:name="android.intent.action.PACKAGE_REPLACED"/>
180                <action android:name="android.intent.action.PACKAGE_REMOVED"/>
181                <data android:scheme="package"></data>
182            </intent-filter>
183        </receiver>
184
185        <!-- The settings provider contains Home's data, like the workspace favorites -->
186        <provider
187            android:name="com.android.launcher3.LauncherProvider"
188            android:authorities="com.android.launcher3.settings"
189            android:exported="true"
190            android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
191            android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
192
193        <meta-data android:name="android.nfc.disable_beam_default"
194                       android:value="true" />
195    </application>
196</manifest>
197