AndroidManifest.xml revision 6241609bd6b0c2de50d0130815a5df72b10e587c
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            <meta-data android:name="android.wallpaper.preview"
127                android:resource="@xml/wallpaper_picker_preview" />
128        </activity>
129
130
131        <!-- Debugging tools -->
132        <activity
133            android:name="com.android.launcher3.MemoryDumpActivity"
134            android:theme="@android:style/Theme.NoDisplay"
135            android:label="@string/debug_memory_activity"
136            android:enabled="@bool/debug_memory_enabled"
137            android:excludeFromRecents="true"
138            android:icon="@mipmap/ic_launcher_home"
139            >
140            <intent-filter>
141                <action android:name="android.intent.action.MAIN" />
142                <category android:name="android.intent.category.DEFAULT" />
143                <category android:name="android.intent.category.LAUNCHER" />
144            </intent-filter>
145        </activity>
146
147        <service android:name="com.android.launcher3.MemoryTracker"
148            android:enabled="@bool/debug_memory_enabled"
149            >
150        </service>
151
152        <!-- Intent received used to prepopulate the default workspace. -->
153        <receiver
154            android:name="com.android.launcher3.PreloadReceiver"
155            android:permission="com.android.launcher3.permission.PRELOAD_WORKSPACE">
156            <intent-filter>
157                <action android:name="com.android.launcher3.action.PRELOAD_WORKSPACE" />
158            </intent-filter>
159        </receiver>
160
161        <!-- Intent received used to install shortcuts from other applications -->
162        <receiver
163            android:name="com.android.launcher3.InstallShortcutReceiver"
164            android:permission="com.android.launcher3.permission.INSTALL_SHORTCUT">
165            <intent-filter>
166                <action android:name="com.android.launcher3.action.INSTALL_SHORTCUT" />
167            </intent-filter>
168        </receiver>
169
170        <!-- Intent received used to uninstall shortcuts from other applications -->
171        <receiver
172            android:name="com.android.launcher3.UninstallShortcutReceiver"
173            android:permission="com.android.launcher3.permission.UNINSTALL_SHORTCUT">
174            <intent-filter>
175                <action android:name="com.android.launcher3.action.UNINSTALL_SHORTCUT" />
176            </intent-filter>
177        </receiver>
178
179        <!-- New user initialization; set up initial wallpaper -->
180        <receiver
181            android:name="com.android.launcher3.UserInitializeReceiver"
182            android:exported="false">
183            <intent-filter>
184                <action android:name="android.intent.action.USER_INITIALIZE" />
185            </intent-filter>
186        </receiver>
187
188        <receiver android:name="com.android.launcher3.PackageChangedReceiver" >
189            <intent-filter>
190                <action android:name="android.intent.action.PACKAGE_CHANGED"/>
191                <action android:name="android.intent.action.PACKAGE_REPLACED"/>
192                <action android:name="android.intent.action.PACKAGE_REMOVED"/>
193                <data android:scheme="package"></data>
194            </intent-filter>
195        </receiver>
196
197        <!-- The settings provider contains Home's data, like the workspace favorites -->
198        <provider
199            android:name="com.android.launcher3.LauncherProvider"
200            android:authorities="com.android.launcher3.settings"
201            android:exported="true"
202            android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
203            android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
204
205        <meta-data android:name="android.nfc.disable_beam_default"
206                       android:value="true" />
207    </application>
208</manifest>
209