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