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