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