blob: 75b81d04d67dd2fba9ffb9652c21577abcd277c6 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?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"
Daniel Sandler325dc232013-06-05 22:57:57 -040022 package="com.android.launcher3">
Sunny Goyald297be22016-05-10 15:35:02 -070023 <uses-sdk android:targetSdkVersion="23" android:minSdkVersion="21"/>
Jeff Hamilton95db7372010-02-11 16:25:50 -060024
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025 <permission
Winson Chung94d67682013-09-25 16:29:40 -070026 android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080027 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Nick Kralevich33650302012-08-07 10:21:13 -070028 android:protectionLevel="dangerous"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080029 android:label="@string/permlab_install_shortcut"
30 android:description="@string/permdesc_install_shortcut" />
31 <permission
Daniel Sandler325dc232013-06-05 22:57:57 -040032 android:name="com.android.launcher3.permission.READ_SETTINGS"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
34 android:protectionLevel="normal"
35 android:label="@string/permlab_read_settings"
36 android:description="@string/permdesc_read_settings"/>
37 <permission
Daniel Sandler325dc232013-06-05 22:57:57 -040038 android:name="com.android.launcher3.permission.WRITE_SETTINGS"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039 android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
Winson Chungc66109c2014-02-26 11:50:46 -080040 android:protectionLevel="signatureOrSystem"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041 android:label="@string/permlab_write_settings"
42 android:description="@string/permdesc_write_settings"/>
Daniel Sandlerff02d492013-08-05 02:12:05 -040043
The Android Open Source Project31dd5032009-03-03 19:32:27 -080044 <uses-permission android:name="android.permission.CALL_PHONE" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -080045 <uses-permission android:name="android.permission.SET_WALLPAPER" />
46 <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
Jeff Sharkey6d3bfe52009-05-07 16:12:05 -070047 <uses-permission android:name="android.permission.BIND_APPWIDGET" />
John Spurlock2c38e702013-09-18 10:48:25 -040048 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Sunny Goyalf599ccf2014-07-08 13:01:29 -070049 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Adam Cohene25af792013-06-06 23:08:25 -070050 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
51 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Daniel Sandler325dc232013-06-05 22:57:57 -040052 <uses-permission android:name="com.android.launcher3.permission.READ_SETTINGS" />
53 <uses-permission android:name="com.android.launcher3.permission.WRITE_SETTINGS" />
Adam Cohen76fc0852011-06-17 13:26:23 -070054
The Android Open Source Project31dd5032009-03-03 19:32:27 -080055 <application
Sunny Goyalc190dbf2016-05-05 14:37:05 -070056 android:backupAgent="com.android.launcher3.LauncherBackupAgent"
57 android:fullBackupOnly="true"
58 android:fullBackupContent="@xml/backupscheme"
Michael Jurka14c5a2c2012-06-28 13:45:33 -070059 android:hardwareAccelerated="true"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070060 android:icon="@mipmap/ic_launcher_home"
Sunny Goyal28c6b962015-10-12 11:42:05 -070061 android:label="@string/app_name"
Fabrice Di Meglio369dd0c2012-09-24 17:30:22 -070062 android:largeHeap="@bool/config_largeHeap"
Sunny Goyal0fc1be12014-08-11 17:05:23 -070063 android:restoreAnyVersion="true"
64 android:supportsRtl="true" >
65
The Android Open Source Project31dd5032009-03-03 19:32:27 -080066 <activity
Daniel Sandler325dc232013-06-05 22:57:57 -040067 android:name="com.android.launcher3.Launcher"
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068 android:launchMode="singleTask"
69 android:clearTaskOnLaunch="true"
70 android:stateNotNeeded="true"
Sunny Goyal5abb9f82016-02-09 15:22:42 -080071 android:theme="@style/LauncherTheme"
Adam Cohen446e9402011-09-15 18:21:21 -070072 android:windowSoftInputMode="adjustPan"
Adam Cohenc2d6e892014-10-16 09:49:24 -070073 android:screenOrientation="nosensor"
Sunny Goyald9bb1b42015-10-14 11:53:04 -070074 android:configChanges="keyboard|keyboardHidden|navigation"
Winson Chung761e8202015-06-01 12:38:30 -070075 android:resumeWhilePausing="true"
Adam Cohen1c524882015-06-23 18:06:37 -070076 android:taskAffinity=""
Adam Cohenc2d6e892014-10-16 09:49:24 -070077 android:enabled="true">
78 <intent-filter>
79 <action android:name="android.intent.action.MAIN" />
80 <category android:name="android.intent.category.HOME" />
81 <category android:name="android.intent.category.DEFAULT" />
82 <category android:name="android.intent.category.MONKEY"/>
83 </intent-filter>
84 </activity>
85
Adam Cohen39a06042013-07-19 14:30:12 -070086 <activity
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -070087 android:name="com.android.launcher3.SettingsActivity"
88 android:label="@string/settings_button_text"
Sunny Goyal745bad92016-05-02 10:54:12 -070089 android:autoRemoveFromRecents="true">
90 <intent-filter>
91 <action android:name="android.intent.action.APPLICATION_PREFERENCES" />
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
Rahul Chaturvedi7fc77ca2015-05-19 18:02:16 -070094 </activity>
95
The Android Open Source Project31dd5032009-03-03 19:32:27 -080096 <!-- Intent received used to install shortcuts from other applications -->
97 <receiver
Daniel Sandler325dc232013-06-05 22:57:57 -040098 android:name="com.android.launcher3.InstallShortcutReceiver"
Sunny Goyal9b8da882014-09-05 04:40:13 -070099 android:permission="com.android.launcher.permission.INSTALL_SHORTCUT">
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800100 <intent-filter>
Sunny Goyal9b8da882014-09-05 04:40:13 -0700101 <action android:name="com.android.launcher.action.INSTALL_SHORTCUT" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800102 </intent-filter>
103 </receiver>
104
Sunny Goyal651077b2014-06-30 14:15:31 -0700105 <!-- Intent received used to initialize a restored widget -->
106 <receiver android:name="com.android.launcher3.AppWidgetsRestoredReceiver" >
107 <intent-filter>
108 <action android:name="android.appwidget.action.APPWIDGET_HOST_RESTORED"/>
109 </intent-filter>
110 </receiver>
111
Tony Wickham827cef22016-03-17 15:39:39 -0700112 <service android:name=".dynamicui.ColorExtractionService"
113 android:exported="false"
114 android:process=":wallpaper_chooser">
115 </service>
116
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800117 <!-- The settings provider contains Home's data, like the workspace favorites -->
118 <provider
Daniel Sandler325dc232013-06-05 22:57:57 -0400119 android:name="com.android.launcher3.LauncherProvider"
120 android:authorities="com.android.launcher3.settings"
Nick Kralevichebe65592012-07-28 16:11:07 -0700121 android:exported="true"
Daniel Sandler325dc232013-06-05 22:57:57 -0400122 android:writePermission="com.android.launcher3.permission.WRITE_SETTINGS"
123 android:readPermission="com.android.launcher3.permission.READ_SETTINGS" />
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800124
Martijn Coenenb34811d2012-04-19 09:38:20 -0700125 <meta-data android:name="android.nfc.disable_beam_default"
126 android:value="true" />
Sunny Goyal322d5562015-06-25 19:35:49 -0700127
128 <!-- ENABLE_FOR_TESTING
129
130 <activity
131 android:name="com.android.launcher3.testing.LauncherExtension"
132 android:launchMode="singleTask"
133 android:clearTaskOnLaunch="true"
134 android:stateNotNeeded="true"
135 android:theme="@style/Theme"
136 android:windowSoftInputMode="adjustPan"
137 android:screenOrientation="nosensor"
138 >
139 <intent-filter>
140 <action android:name="android.intent.action.MAIN" />
141 <category android:name="android.intent.category.HOME" />
142 <category android:name="android.intent.category.DEFAULT" />
143 <category android:name="android.intent.category.MONKEY"/>
144 </intent-filter>
145 </activity>
146
147 <activity
148 android:name="com.android.launcher3.testing.MemoryDumpActivity"
149 android:theme="@android:style/Theme.NoDisplay"
150 android:label="* HPROF"
151 android:excludeFromRecents="true"
152 android:icon="@mipmap/ic_launcher_home"
153 >
154 <intent-filter>
155 <action android:name="android.intent.action.MAIN" />
156 <category android:name="android.intent.category.DEFAULT" />
157 <category android:name="android.intent.category.LAUNCHER" />
158 </intent-filter>
159 </activity>
160
161 <activity
162 android:name="com.android.launcher3.testing.ToggleWeightWatcher"
163 android:label="Show Mem"
164 android:icon="@mipmap/ic_launcher_home">
165 <intent-filter>
166 <action android:name="android.intent.action.MAIN" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <category android:name="android.intent.category.LAUNCHER" />
169 </intent-filter>
170 </activity>
171
172 <service android:name="com.android.launcher3.testing.MemoryTracker" />
173
174 -->
175
The Android Open Source Project31dd5032009-03-03 19:32:27 -0800176 </application>
177</manifest>