blob: b147fff310ed36e5aadf0a61b2f20755868c2c92 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Tsung-Mao Fangfa7394a2022-10-04 15:51:45 +08002 xmlns:tools="http://schemas.android.com/tools"
Lucas Silva06e373d2022-01-27 22:49:42 +00003 package="com.android.settings"
4 coreApp="true"
5 android:sharedUserId="android.uid.system">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08006
Lucas Silva06e373d2022-01-27 22:49:42 +00007 <original-package android:name="com.android.settings"/>
Jeff Hamiltonc60fb582010-02-11 16:25:53 -06008
Kuan Wang0a0ba912022-10-13 18:07:54 +08009 <!-- Permissions for reading or writing battery-related data. -->
10 <permission
11 android:name="com.android.settings.BATTERY_DATA"
12 android:protectionLevel="signature|privileged"/>
13
Sundeep Ghumanc164ad02016-12-26 17:37:30 -080014 <uses-permission android:name="android.permission.REQUEST_NETWORK_SCORES" />
Jeff Sharkey57382662015-07-30 16:55:42 -070015 <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
Zim3d437eb2020-01-24 15:29:00 +000016 <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
Vasu Nori21809742011-01-25 13:39:16 -080017 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jay Thomas Sullivancd2109a2022-03-09 22:31:53 -080018 <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
Tsung-Mao Fang09c96a32022-02-22 17:06:01 +080019 <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
20 <uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080021 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
22 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Mike Lockwoodcd03f532009-09-15 14:39:47 -040023 <uses-permission android:name="android.permission.DEVICE_POWER" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080024 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
Yohei Yukawac7fc7422022-07-25 18:38:49 +090025 <uses-permission android:name="android.permission.CONTROL_UI_TRACING" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080026 <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
27 <uses-permission android:name="android.permission.VIBRATE" />
Jeff Sharkey7025a832021-06-22 19:58:58 -060028 <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
Jeff Sharkey9e07eab2021-03-22 15:33:01 -060029 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
30 <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
Matthew Xie500f2942013-09-24 00:55:42 -070031 <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
Nick Pellyf2917ac2010-10-20 16:39:44 -070032 <uses-permission android:name="android.permission.NFC" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080033 <uses-permission android:name="android.permission.HARDWARE_TEST" />
34 <uses-permission android:name="android.permission.CALL_PHONE" />
35 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
Vlad Popaa1450822023-07-19 16:30:30 -070036 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS_PRIVILEGED" />
William Escande23ebda42021-12-20 13:45:47 +010037 <uses-permission android:name="android.permission.QUERY_AUDIO_STATE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080038 <uses-permission android:name="android.permission.MASTER_CLEAR" />
39 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" />
40 <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" />
41 <uses-permission android:name="android.permission.READ_CONTACTS" />
42 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
Chia-chi Yeh413b1712011-07-07 12:49:18 -070043 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Roshan Piusf1f209f2017-12-13 16:20:18 -080044 <uses-permission android:name="android.permission.LOCAL_MAC_ADDRESS" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080045 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Irfan Sheriff0f41b492013-03-29 11:15:07 -070046 <uses-permission android:name="com.android.certinstaller.INSTALL_AS_USER" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080047 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
Jeremy Klein78d182f2015-12-28 15:39:39 -080048 <uses-permission android:name="android.permission.TETHER_PRIVILEGED" />
Dianne Hackborn027cdd22018-01-19 17:57:28 -080049 <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080050 <uses-permission android:name="android.permission.INTERNET" />
51 <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" />
52 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
zoey chen4a7ad4d2019-12-17 18:13:39 +080053 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080054 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Bonian Chen28a47f82023-02-14 08:51:56 +000055 <uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
56 <uses-permission android:name="android.permission.USE_ICC_AUTH_WITH_DEVICE_IDENTIFIER" />
Hall Liua6840ca2018-11-27 17:00:50 -080057 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080058 <uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/>
59 <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/>
60 <uses-permission android:name="android.permission.READ_USER_DICTIONARY"/>
61 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY"/>
Dianne Hackborn517ea9f2010-01-04 18:47:54 -080062 <uses-permission android:name="android.permission.FORCE_STOP_PACKAGES"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080063 <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"/>
64 <uses-permission android:name="android.permission.BATTERY_STATS"/>
65 <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
66 <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
Suchi Amalapurapuad148272010-02-19 14:30:01 -080067 <uses-permission android:name="android.permission.MOVE_PACKAGE" />
Amith Yamasani43c69782010-12-01 09:04:36 -080068 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
69 <uses-permission android:name="android.permission.BACKUP" />
Amith Yamasani43c69782010-12-01 09:04:36 -080070 <uses-permission android:name="android.permission.READ_SYNC_STATS" />
71 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
72 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
Stanislav Zholnin646dda92019-02-01 13:00:37 +000073 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" />
Jason parks8fd5bc92011-01-12 16:03:31 -060074 <uses-permission android:name="android.permission.STATUS_BAR" />
Mike Lockwood9d6d92b2011-02-27 09:05:10 -080075 <uses-permission android:name="android.permission.MANAGE_USB" />
Kenny Roote7bbf8f2018-01-23 21:53:53 +090076 <uses-permission android:name="android.permission.MANAGE_DEBUGGING" />
Jeff Brownd82487b2011-06-02 03:10:28 -070077 <uses-permission android:name="android.permission.SET_POINTER_SPEED" />
Jeff Brown4397f402012-04-09 13:24:34 -070078 <uses-permission android:name="android.permission.SET_KEYBOARD_LAYOUT" />
Dianne Hackborn271c8b02012-08-20 17:24:39 -070079 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
80 <uses-permission android:name="android.permission.COPY_PROTECTED_DATA" />
81 <uses-permission android:name="android.permission.MANAGE_USERS" />
Nicolas Prevot189294e2015-04-22 16:26:45 +010082 <uses-permission android:name="android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS" />
Amith Yamasani32dccbc2012-09-13 18:06:49 -070083 <uses-permission android:name="android.permission.READ_PROFILE" />
Jeff Brown9e143f52012-09-19 20:46:07 -070084 <uses-permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY" />
Michael Wrightaacf55a2016-07-13 22:11:09 -070085 <uses-permission android:name="android.permission.CONFIGURE_DISPLAY_COLOR_MODE" />
Christine Franksbce91d92018-07-03 14:44:08 -070086 <uses-permission android:name="android.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS" />
Neil Fuller0770b3f2019-11-21 16:09:00 +000087 <uses-permission android:name="android.permission.SUGGEST_MANUAL_TIME_AND_ZONE" />
Daniel Sandler328e2d22013-01-17 13:14:02 -050088 <uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" />
Brian Carlstromf32ba132013-06-28 13:18:41 -070089 <uses-permission android:name="android.permission.REBOOT" />
PauloftheWest63f7bc82014-10-30 08:01:30 -070090 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Amith Yamasani92472652013-07-19 12:37:42 -070091 <uses-permission android:name="android.permission.MANAGE_DEVICE_ADMINS" />
Fabrice Di Meglio485b1b82014-03-20 12:24:57 -070092 <uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES" />
Fan Zhangd040ecd2017-08-17 16:13:20 -070093 <uses-permission android:name="android.permission.BIND_SETTINGS_SUGGESTIONS_SERVICE" />
Brian Leed4f8e582022-12-05 15:58:01 -080094 <uses-permission android:name="android.permission.BIND_REMOTE_LOCKSCREEN_VALIDATION_SERVICE" />
Andres Moralesce249fe2014-07-07 16:58:16 -070095 <uses-permission android:name="android.permission.OEM_UNLOCK_STATE" />
Andrew Scullc23357e2017-04-18 09:40:11 +010096 <uses-permission android:name="android.permission.MANAGE_USER_OEM_UNLOCK_STATE" />
Sky Faber2d657e32014-09-22 16:43:04 -070097 <uses-permission android:name="android.permission.OVERRIDE_WIFI_CONFIG" />
Etan Cohen07de3592021-01-21 16:52:03 -080098 <uses-permission android:name="android.permission.RESTART_WIFI_SUBSYSTEM" />
Jim Miller94d4bd92015-02-19 21:04:57 -080099 <uses-permission android:name="android.permission.MANAGE_FINGERPRINT" />
Kevin Chynb3ee2312018-10-04 15:01:43 -0700100 <uses-permission android:name="android.permission.USE_BIOMETRIC" />
101 <uses-permission android:name="android.permission.USE_BIOMETRIC_INTERNAL" />
Jorim Jaggi4a2423b2015-04-24 10:19:48 -0700102 <uses-permission android:name="android.permission.USER_ACTIVITY" />
Amith Yamasani50e32b02015-05-13 18:18:16 -0700103 <uses-permission android:name="android.permission.CHANGE_APP_IDLE_STATE" />
Fyodor Kupolov0938a632015-07-27 12:24:59 -0700104 <uses-permission android:name="android.permission.PEERS_MAC_ADDRESS"/>
Julia Reynoldsf02aa0c2015-09-28 08:57:03 -0400105 <uses-permission android:name="android.permission.MANAGE_NOTIFICATIONS"/>
Daniel Nishib84304d2016-04-11 14:08:44 -0700106 <uses-permission android:name="android.permission.DELETE_PACKAGES"/>
Philip P. Moltmanndd7441b2017-09-05 12:42:04 -0700107 <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
Phil Weaver2e2dbfe2017-05-30 10:41:52 -0700108 <uses-permission android:name="android.permission.MANAGE_APP_OPS_RESTRICTIONS"/>
Dianne Hackbornda3c0462018-03-07 16:42:39 -0800109 <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" />
Phil Weaver633c9be2017-07-05 10:02:38 -0700110 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Philip P. Moltmann5929b132017-06-19 10:55:31 -0700111 <uses-permission android:name="android.permission.READ_PRINT_SERVICES" />
Roshan Pius37a46a12017-07-24 15:05:36 -0700112 <uses-permission android:name="android.permission.NETWORK_SETTINGS" />
Alexandru-Andrei Rotaruaeb3e442017-08-07 12:21:31 +0100113 <uses-permission android:name="android.permission.TEST_BLACKLISTED_PASSWORD" />
Jeff Sharkeyd9403362018-01-05 17:14:37 -0700114 <uses-permission android:name="android.permission.USE_RESERVED_DISK" />
Felipe Lemea5bbad42018-02-14 13:15:19 -0800115 <uses-permission android:name="android.permission.MANAGE_SCOPED_ACCESS_DIRECTORY_PERMISSIONS" />
Kevin Chyn22b4edd2018-07-30 19:20:01 -0700116 <uses-permission android:name="android.permission.CAMERA" />
jackqdyuleif25c9b02019-02-27 10:05:56 -0800117 <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
PO HUNG CHENafc513e2019-12-10 04:11:21 +0000118 <uses-permission android:name="android.permission.INSTALL_DYNAMIC_SYSTEM" />
Jack Yuc4da22a2020-01-30 00:04:06 -0800119 <uses-permission android:name="android.permission.BIND_CELL_BROADCAST_SERVICE" />
Mehdi Alizadeh2552dff2020-06-11 21:06:00 -0700120 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
Edgar Wang39121792020-10-27 16:54:46 +0800121 <uses-permission android:name="android.permission.READ_DREAM_STATE" />
122 <uses-permission android:name="android.permission.READ_DREAM_SUPPRESSION" />
Zhen Zhang1f99d6a2021-03-22 00:49:49 -0700123 <uses-permission android:name="android.permission.MANAGE_APP_HIBERNATION" />
Arc Wang8b2dd652021-10-05 20:20:40 +0800124 <uses-permission android:name="android.permission.LAUNCH_MULTI_PANE_SETTINGS_DEEP_LINK" />
125 <uses-permission android:name="android.permission.ALLOW_PLACE_IN_MULTI_PANE_SETTINGS" />
Steve Elliott7bfcff32021-12-03 16:35:02 -0500126 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
tom hsu58244b12021-10-28 14:50:11 +0800127 <uses-permission android:name="android.permission.READ_APP_SPECIFIC_LOCALES" />
Pavel Grafov8d4e89b2021-12-16 14:34:06 +0000128 <uses-permission android:name="android.permission.QUERY_ADMIN_POLICY" />
Jan Tomljanovic9d2ec952022-01-17 12:21:59 +0000129 <uses-permission android:name="android.permission.READ_SAFETY_CENTER_STATUS" />
Marie Matheson6b9a1ff2022-01-25 18:48:22 +0000130 <uses-permission android:name="android.permission.SEND_SAFETY_CENTER_UPDATE" />
Pyuli Naithanid1408572022-01-12 23:08:02 +0000131 <uses-permission android:name="android.permission.START_VIEW_APP_FEATURES" />
Reema Bajwa5ba7d672022-12-20 22:09:15 +0000132 <uses-permission android:name="android.permission.LIST_ENABLED_CREDENTIAL_PROVIDERS" />
Alejandro Nijamkin6f775622022-12-24 08:08:02 -0800133 <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" />
danielwbhuangaa1d9c42022-12-30 21:31:24 +0800134 <uses-permission android:name="android.permission.REMAP_MODIFIER_KEYS" />
Yuxin Hu0927e2a2023-04-17 23:56:19 +0000135 <uses-permission android:name="android.permission.ACCESS_GPU_SERVICE" />
pihuei55fb2b72020-10-13 19:00:57 +0800136
Tsung-Mao Fang4781fc12021-09-06 02:41:26 +0000137 <application
138 android:name=".SettingsApplication"
139 android:label="@string/settings_label"
Hyunyoung Song1f093dd2017-02-14 10:40:58 -0800140 android:icon="@drawable/ic_launcher_settings"
Amith Yamasani56f51a82013-08-05 10:07:23 -0700141 android:theme="@style/Theme.Settings"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -0700142 android:hardwareAccelerated="true"
Amith Yamasani233592b2013-03-01 17:05:23 -0800143 android:requiredForAllUsers="true"
Fabrice Di Meglio66445562014-06-30 13:11:53 -0700144 android:supportsRtl="true"
Sunny Goyalae788a12019-04-24 17:11:24 -0700145 android:backupAgent="com.android.settings.backup.SettingsBackupHelper"
Jeff Sharkey3bd73ed2015-11-18 10:20:18 -0700146 android:usesCleartextTraffic="true"
Jeff Sharkeya806b7a2016-03-17 11:04:55 -0600147 android:defaultToDeviceProtectedStorage="true"
Jason Monk20210122018-04-03 18:36:42 -0400148 android:directBootAware="true"
Yi-Ling Chuang2a3337a2022-02-18 13:49:34 +0800149 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
kellyz1bda6422022-07-22 10:23:28 +0800150 android:gwpAsanMode="always"
151 android:enableOnBackInvokedCallback="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800152
Bonian Chene69d1a62021-01-06 05:41:46 +0000153 <uses-library android:name="org.apache.http.legacy" />
Tsung-Mao Fang18ad0c42021-08-17 18:28:06 +0800154
Arc Wangcf4ee7b2023-01-09 10:26:07 +0800155 <property
156 android:name="android.window.PROPERTY_ACTIVITY_EMBEDDING_SPLITS_ENABLED"
157 android:value="true" />
158
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800159 <!-- Settings -->
Fan Zhang44be9132018-09-07 12:56:53 -0700160 <activity android:name=".homepage.SettingsHomepageActivity"
Raff Tsai082f8ee2018-06-29 06:11:39 +0000161 android:label="@string/settings_label_launcher"
162 android:theme="@style/Theme.Settings.Home"
Sunny Shao0b0e6fc2019-06-18 13:32:05 +0800163 android:taskAffinity="com.android.settings.root"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700164 android:exported="true"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800165 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
Fan Zhang0c7c59f2018-10-26 13:40:38 -0700166 <intent-filter android:priority="1">
167 <action android:name="android.settings.SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800168 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhang0c7c59f2018-10-26 13:40:38 -0700169 <category android:name="android.intent.category.DEFAULT" />
170 </intent-filter>
171 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
172 android:value="true" />
Raff Tsai082f8ee2018-06-29 06:11:39 +0000173 </activity>
174
Jason Chiua3b21cf2021-11-16 18:20:19 +0800175 <!-- Activity for launching deep link page in 2-pane. -->
176 <activity android:name=".homepage.DeepLinkHomepageActivity"
177 android:label="@string/settings_label_launcher"
Jason Chiu177573c2021-12-02 14:26:24 +0800178 android:theme="@style/Theme.Settings.Home"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800179 android:launchMode="singleTask"
180 android:exported="true"
Tsung-Mao Fang3943de12021-12-08 20:23:13 +0800181 android:enabled="false"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800182 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000183 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800184 android:permission="android.permission.LAUNCH_MULTI_PANE_SETTINGS_DEEP_LINK">
185 <intent-filter>
186 <action android:name="android.settings.SETTINGS_EMBED_DEEP_LINK_ACTIVITY" />
187 <category android:name="android.intent.category.DEFAULT" />
188 </intent-filter>
189 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
190 android:value="true" />
191 </activity>
192
Jason Chiu177573c2021-12-02 14:26:24 +0800193 <activity android:name=".homepage.DeepLinkHomepageActivityInternal"
Arc Wanga63e9c62021-09-28 20:39:15 +0800194 android:label="@string/settings_label_launcher"
Jason Chiu177573c2021-12-02 14:26:24 +0800195 android:theme="@style/Theme.Settings.Home.NoAnimation"
Arc Wanga63e9c62021-09-28 20:39:15 +0800196 android:taskAffinity=""
197 android:launchMode="singleTask"
198 android:exported="false"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800199 android:excludeFromRecents="true"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800200 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
Arc Wanga63e9c62021-09-28 20:39:15 +0800201 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
202 android:value="true" />
jackqdyulei106ae1d2018-10-05 10:04:19 -0700203 </activity>
204
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100205 <!-- Alias for launcher activity only, as this belongs to each profile. -->
206 <activity-alias android:name="Settings"
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100207 android:label="@string/settings_label_launcher"
Sunny Shao0b0e6fc2019-06-18 13:32:05 +0800208 android:taskAffinity="com.android.settings.root"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700209 android:exported="true"
Fan Zhang44be9132018-09-07 12:56:53 -0700210 android:targetActivity=".homepage.SettingsHomepageActivity">
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100211 <intent-filter>
212 <action android:name="android.intent.action.MAIN" />
213 <category android:name="android.intent.category.DEFAULT" />
214 <category android:name="android.intent.category.LAUNCHER" />
215 </intent-filter>
Sunny Goyal5f179fc2016-06-15 12:36:50 -0700216 <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/>
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100217 </activity-alias>
218
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700219 <receiver android:name=".SettingsInitialize"
220 android:exported="true">
Alexandra Gherghina89265a32014-07-17 20:29:34 +0100221 <intent-filter>
Alexandra Gherghinaf2e39f22014-08-18 13:16:17 +0100222 <action android:name="android.intent.action.USER_INITIALIZE"/>
Alexandra Gherghina51712242014-09-05 16:32:14 +0100223 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
Alexandra Gherghina89265a32014-07-17 20:29:34 +0100224 </intent-filter>
225 </receiver>
226
Mill Chen14cfd2f2021-01-06 07:46:46 +0800227 <activity android:name=".SubSettings"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000228 android:exported="false"
229 android:theme="@style/Theme.SubSettings"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000230 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000231 android:taskAffinity="com.android.settings.root" />
Dianne Hackbornb7258182011-03-15 16:23:55 -0700232
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700233 <activity android:name=".Settings$CreateShortcutActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700234 android:exported="true"
Fan Zhang92f1e942017-01-21 10:07:26 -0800235 android:label="@string/settings_shortcut">
Dianne Hackborna54672f2009-06-24 12:45:09 -0700236 <intent-filter>
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700237 <action android:name="android.intent.action.CREATE_SHORTCUT" />
238 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborna54672f2009-06-24 12:45:09 -0700239 </intent-filter>
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700240 <meta-data
241 android:name="com.android.settings.FRAGMENT_CLASS"
242 android:value="com.android.settings.shortcut.CreateShortcut" />
Dianne Hackborna54672f2009-06-24 12:45:09 -0700243 </activity>
244
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800245 <!-- Wireless Controls -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800246 <activity
247 android:name=".Settings$NetworkDashboardActivity"
Doris Ling26208222017-03-03 11:28:05 -0800248 android:label="@string/network_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700249 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800250 android:icon="@drawable/ic_homepage_network">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800251 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800252 <action android:name="android.settings.WIRELESS_SETTINGS" />
253 <action android:name="android.settings.AIRPLANE_MODE_SETTINGS" />
Andrew Sappersteinc65ccd22019-04-25 10:31:37 -0700254 <action android:name="com.android.settings.sim.SIM_SUB_INFO_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800255 <category android:name="android.intent.category.BROWSABLE" />
Doris Ling26208222017-03-03 11:28:05 -0800256 <category android:name="android.intent.category.DEFAULT" />
257 </intent-filter>
258 <intent-filter>
259 <action android:name="android.intent.action.MAIN" />
260 <category android:name="android.intent.category.DEFAULT" />
261 <category android:name="android.intent.category.VOICE_LAUNCH" />
262 </intent-filter>
Doris Ling26208222017-03-03 11:28:05 -0800263 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
264 android:value="com.android.settings.network.NetworkDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800265 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
266 android:value="@string/menu_key_network"/>
Doris Ling26208222017-03-03 11:28:05 -0800267 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
268 android:value="true" />
269 </activity>
270
Zoey Chen6978a902021-12-14 18:42:37 +0800271 <activity
272 android:name=".Settings$MobileNetworkActivity"
273 android:label="@string/network_settings_title"
274 android:configChanges="orientation|screenSize|keyboardHidden"
Bonian Chend10618d2022-05-30 19:06:10 +0800275 android:launchMode="singleTop"
Zoey Chen6978a902021-12-14 18:42:37 +0800276 android:exported="true">
277 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
278 android:value="com.android.settings.network.telephony.MobileNetworkSettings"/>
Arc Wanga63e9c62021-09-28 20:39:15 +0800279 <intent-filter android:priority="1">
280 <!-- Displays the MobileNetworkActivity and opt-in dialog for capability discovery. -->
Bonian Chend10618d2022-05-30 19:06:10 +0800281 <!-- Please sync with a list created within MobileNetworkIntentConverter.java -->
282 <action android:name="android.intent.action.MAIN" />
Arc Wanga63e9c62021-09-28 20:39:15 +0800283 <action android:name="android.telephony.ims.action.SHOW_CAPABILITY_DISCOVERY_OPT_IN" />
284 <action android:name="android.settings.NETWORK_OPERATOR_SETTINGS" />
285 <action android:name="android.settings.DATA_ROAMING_SETTINGS" />
286 <action android:name="android.settings.MMS_MESSAGE_SETTING" />
Han Xub7d10772022-08-15 19:19:55 +0800287 <category android:name="android.intent.category.BROWSABLE" />
Arc Wanga63e9c62021-09-28 20:39:15 +0800288 <category android:name="android.intent.category.DEFAULT" />
289 </intent-filter>
290 </activity>
291
Antony Sargent94d97902019-03-26 09:50:22 -0700292 <activity android:name=".Settings$MobileNetworkListActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700293 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800294 android:label="@string/network_settings_title">
Antony Sargent94d97902019-03-26 09:50:22 -0700295 <intent-filter android:priority="1">
296 <action android:name="android.settings.MOBILE_NETWORK_LIST" />
Peter Wang93ce0682021-04-09 11:49:34 -0700297 <action android:name="android.settings.MANAGE_ALL_SIM_PROFILES_SETTINGS" />
Antony Sargent94d97902019-03-26 09:50:22 -0700298 <category android:name="android.intent.category.DEFAULT" />
299 </intent-filter>
300 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
301 android:value="com.android.settings.network.MobileNetworkListFragment"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800302 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
303 android:value="@string/menu_key_network"/>
Antony Sargent94d97902019-03-26 09:50:22 -0700304 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
305 android:value="true" />
306 </activity>
307
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800308 <activity
309 android:name=".Settings$ConnectedDeviceDashboardActivity"
Doris Ling26208222017-03-03 11:28:05 -0800310 android:label="@string/connected_devices_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700311 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800312 android:icon="@drawable/ic_homepage_connected_device">
Doris Ling26208222017-03-03 11:28:05 -0800313 <intent-filter android:priority="1">
jackqdyulei6dd7f2e2018-02-07 17:49:09 -0800314 <action android:name="android.settings.BLUETOOTH_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800315 <category android:name="android.intent.category.BROWSABLE" />
jackqdyulei6dd7f2e2018-02-07 17:49:09 -0800316 <category android:name="android.intent.category.DEFAULT" />
317 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700318 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Ling26208222017-03-03 11:28:05 -0800319 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800320 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Jason Chiu646a31e2021-11-10 11:56:00 +0800321 android:value="@string/menu_key_connected_devices"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100322 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
323 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700324 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800325
Barnaby Jamesc55ea152015-04-13 14:33:53 -0700326 <activity android:name="AirplaneModeVoiceActivity"
327 android:label="@string/wireless_networks_settings_title"
Andrew Sapperstein7e157432016-07-15 16:46:38 -0700328 android:theme="@*android:style/Theme.DeviceDefault.Light.Voice"
Barnaby Jamesc55ea152015-04-13 14:33:53 -0700329 android:exported="true">
330 <intent-filter>
331 <action android:name="android.settings.VOICE_CONTROL_AIRPLANE_MODE" />
332 <category android:name="android.intent.category.DEFAULT" />
333 <category android:name="android.intent.category.VOICE" />
334 </intent-filter>
335 </activity>
336
Fan Zhang25f29bf2017-10-24 09:27:02 -0700337 <activity android:name=".search.SearchResultTrampoline"
338 android:theme="@android:style/Theme.NoDisplay"
339 android:excludeFromRecents="true"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000340 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang25f29bf2017-10-24 09:27:02 -0700341 android:exported="true">
Fan Zhang8068fda2017-11-09 16:37:01 -0800342 <intent-filter>
343 <action android:name="com.android.settings.SEARCH_RESULT_TRAMPOLINE" />
344 <category android:name="android.intent.category.DEFAULT" />
345 </intent-filter>
Fan Zhang25f29bf2017-10-24 09:27:02 -0700346 </activity>
347
Jason Chiu3af73362021-11-11 14:24:37 +0800348 <receiver android:name=".search.SearchStateReceiver"
349 android:exported="true"
Tsung-Mao Fang3943de12021-12-08 20:23:13 +0800350 android:enabled="false"
Jason Chiu3af73362021-11-11 14:24:37 +0800351 android:permission="android.permission.READ_SEARCH_INDEXABLES">
352 <intent-filter>
353 <action android:name="com.android.settings.SEARCH_START"/>
354 <action android:name="com.android.settings.SEARCH_EXIT"/>
355 </intent-filter>
356 </receiver>
357
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800358 <activity
Florian Mayerce174932022-11-07 17:27:52 -0800359 android:name="Settings$MemtagPageActivity"
360 android:label="@string/memtag_title"
361 android:icon="@drawable/ic_homepage_security"
362 android:exported="true"
363 android:configChanges="orientation|keyboardHidden|screenSize">
364 <intent-filter android:priority="1">
Florian Mayeref5e8672022-11-17 16:46:05 -0800365 <action android:name="android.settings.ADVANCED_MEMORY_PROTECTION_SETTINGS"/>
Florian Mayerce174932022-11-07 17:27:52 -0800366 <category android:name="android.intent.category.BROWSABLE" />
367 <category android:name="android.intent.category.DEFAULT"/>
368 </intent-filter>
369 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
370 android:value="com.android.settings.security.MemtagPage"/>
371 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
372 android:value="@string/menu_key_security"/>
373 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
374 android:value="true"/>
375 </activity>
376
377 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800378 android:name="Settings$WifiSettingsActivity"
379 android:label="@string/wifi_settings"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800380 android:icon="@drawable/ic_homepage_network"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700381 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800382 android:configChanges="orientation|keyboardHidden|screenSize">
Weng Sueb70b242021-11-12 22:50:12 +0800383 <intent-filter android:priority="1">
384 <action android:name="android.settings.WIFI_SETTINGS"/>
Han Xub7d10772022-08-15 19:19:55 +0800385 <category android:name="android.intent.category.BROWSABLE" />
Weng Sueb70b242021-11-12 22:50:12 +0800386 <category android:name="android.intent.category.DEFAULT"/>
387 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700388 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800389 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800390 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800391 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100392 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sueb70b242021-11-12 22:50:12 +0800393 android:value="true"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700394 </activity>
Chia-chi Yeh48090d42010-01-25 15:41:42 +0800395
David Magno6031a6e2021-10-07 14:40:31 +0200396 <!-- Keep compatibility with old shortcuts. -->
397 <activity-alias
398 android:name="Settings$WifiSettings2Activity"
399 android:targetActivity="Settings$WifiSettingsActivity"
400 android:label="@string/wifi_settings"
401 android:icon="@drawable/ic_homepage_network"
402 android:exported="true">
403 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800404 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800405 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800406 android:value="@string/menu_key_network"/>
407 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
408 android:value="true"/>
David Magno6031a6e2021-10-07 14:40:31 +0200409 </activity-alias>
410
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800411 <activity
Arc Wang746176e2020-09-02 17:35:56 +0800412 android:name="Settings$NetworkProviderSettingsActivity"
Weng Su658a4172021-07-26 16:33:31 +0800413 android:label="@string/provider_internet_settings"
Arc Wang746176e2020-09-02 17:35:56 +0800414 android:icon="@drawable/ic_homepage_network"
415 android:exported="true"
416 android:configChanges="orientation|keyboardHidden|screenSize">
417 <intent-filter android:priority="1">
Weng Sueb70b242021-11-12 22:50:12 +0800418 <action android:name="android.settings.NETWORK_PROVIDER_SETTINGS"/>
419 <category android:name="android.intent.category.DEFAULT"/>
Arc Wang746176e2020-09-02 17:35:56 +0800420 </intent-filter>
421 <intent-filter android:priority="1">
Weng Sueb70b242021-11-12 22:50:12 +0800422 <action android:name="android.intent.action.MAIN"/>
423 <category android:name="com.android.settings.SHORTCUT"/>
Arc Wang746176e2020-09-02 17:35:56 +0800424 </intent-filter>
425 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800426 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800427 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800428 android:value="@string/menu_key_network"/>
Arc Wang746176e2020-09-02 17:35:56 +0800429 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sueb70b242021-11-12 22:50:12 +0800430 android:value="true"/>
Arc Wang746176e2020-09-02 17:35:56 +0800431 </activity>
432
433 <activity
SongFerng Wangfa6a3612021-12-08 14:25:41 +0000434 android:name="Settings$NetworkSelectActivity"
435 android:label="@string/choose_network_title"
436 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
437 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
438 android:value="com.android.settings.network.telephony.NetworkSelectSettings" />
439 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
440 android:value="true" />
441 </activity>
442
443 <activity
Weng Sue8a4e132021-07-15 11:38:38 +0800444 android:name="Settings$WifiDetailsSettingsActivity"
445 android:label="@string/wifi_details_title"
446 android:icon="@drawable/ic_homepage_network"
447 android:exported="true"
448 android:permission="android.permission.CHANGE_WIFI_STATE"
449 android:configChanges="orientation|keyboardHidden|screenSize">
450 <!-- The intent action is only public to OEM, because a special library is required. -->
451 <intent-filter android:priority="1">
452 <action android:name="android.settings.WIFI_DETAILS_SETTINGS" />
453 <category android:name="android.intent.category.DEFAULT" />
454 </intent-filter>
455 <meta-data
456 android:name="com.android.settings.FRAGMENT_CLASS"
457 android:value="com.android.settings.wifi.details.WifiNetworkDetailsFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800458 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
459 android:value="@string/menu_key_network"/>
460 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sue8a4e132021-07-15 11:38:38 +0800461 android:value="true" />
462 </activity>
463
464 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700465 android:name=".wifi.WifiPickerActivity"
Weng Su79c30c02022-01-25 21:22:20 +0800466 android:permission="android.permission.CHANGE_WIFI_STATE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700467 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800468 <intent-filter android:priority="1">
469 <action android:name="android.net.wifi.PICK_WIFI_NETWORK" />
470 <category android:name="android.intent.category.DEFAULT" />
471 </intent-filter>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100472 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
473 android:value="true" />
Daisuke Miyakawa79c5fd92011-01-15 14:58:00 -0800474 </activity>
475
Jun Ono89c2c5e2019-05-30 12:56:43 +0900476 <activity android:name=".Settings$AdaptiveBrightnessActivity"
477 android:label="@string/auto_brightness_title"
478 android:exported="true">
479 <intent-filter>
480 <action android:name="android.settings.ADAPTIVE_BRIGHTNESS_SETTINGS" />
481 <category android:name="android.intent.category.DEFAULT" />
482 </intent-filter>
483 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
484 android:value="com.android.settings.display.AutoBrightnessSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800485 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
486 android:value="@string/menu_key_display"/>
Jun Ono89c2c5e2019-05-30 12:56:43 +0900487 </activity>
488
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800489 <activity
490 android:name="Settings$ConfigureWifiSettingsActivity"
491 android:label="@string/wifi_configure_settings_preference_title"
492 android:icon="@drawable/ic_settings_wireless"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700493 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800494 android:configChanges="orientation|keyboardHidden|screenSize">
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800495 <intent-filter android:priority="1">
Stephen Chen91d13c12017-03-22 15:53:26 -0700496 <action android:name="android.settings.WIFI_IP_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800497 <category android:name="android.intent.category.BROWSABLE" />
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800498 <category android:name="android.intent.category.DEFAULT" />
499 </intent-filter>
500 <intent-filter>
501 <action android:name="android.intent.action.MAIN" />
502 <category android:name="android.intent.category.VOICE_LAUNCH" />
503 <category android:name="android.intent.category.DEFAULT" />
504 </intent-filter>
505 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
506 android:value="com.android.settings.wifi.ConfigureWifiSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800507 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
508 android:value="@string/menu_key_network"/>
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800509 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
510 android:value="true" />
511 </activity>
512
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800513 <activity
514 android:name="Settings$SavedAccessPointsSettingsActivity"
515 android:label="@string/wifi_saved_access_points_label"
516 android:icon="@drawable/ic_settings_wireless"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700517 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800518 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800519 <intent-filter android:priority="1">
Stephen Chen66d1a692016-11-14 16:24:08 -0800520 <action android:name="android.settings.WIFI_SAVED_NETWORK_SETTINGS" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800521 <category android:name="android.intent.category.DEFAULT" />
522 </intent-filter>
PauloftheWest7837b992014-06-24 07:42:27 -0700523 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Viesturs Zarinsf1d115c2022-09-28 15:06:18 +0000524 android:value="com.android.settings.wifi.savedaccesspoints2.SavedAccessPointsWifiSettings2" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800525 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
526 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100527 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
528 android:value="true" />
PauloftheWest7837b992014-06-24 07:42:27 -0700529 </activity>
530
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700531 <activity android:name=".Settings$WifiInfoActivity"
532 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800533 <intent-filter>
534 <action android:name="android.intent.action.MAIN"/>
535 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
536 <category android:name="android.intent.category.DEFAULT" />
537 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -0400538 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
539 android:value="com.android.settings.wifi.WifiInfo" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800540 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
541 android:value="@string/menu_key_network"/>
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800542 </activity>
543
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700544 <activity android:name=".wifi.WifiConfigInfo"
545 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800546 <intent-filter>
547 <action android:name="android.intent.action.MAIN"/>
548 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
549 <category android:name="android.intent.category.DEFAULT" />
550 </intent-filter>
551 </activity>
552
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700553 <activity android:name=".Settings$WifiAPITestActivity"
554 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800555 <intent-filter>
556 <action android:name="android.intent.action.MAIN"/>
557 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
558 <category android:name="android.intent.category.DEFAULT" />
559 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -0400560 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
561 android:value="com.android.settings.wifi.WifiAPITest" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800562 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
563 android:value="@string/menu_key_network"/>
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800564 </activity>
565
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700566 <activity android:name=".wifi.WifiStatusTest"
567 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800568 <intent-filter>
569 <action android:name="android.intent.action.MAIN"/>
570 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
571 <category android:name="android.intent.category.DEFAULT" />
572 </intent-filter>
573 </activity>
574
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900575 <activity android:name=".wifi.WifiNoInternetDialog"
576 android:clearTaskOnLaunch="true"
577 android:excludeFromRecents="true"
578 android:exported="true"
lucaslin7335c592019-03-20 11:41:21 +0800579 android:permission="android.permission.NETWORK_STACK"
Arc Wang5a298fb2020-06-30 14:14:02 +0800580 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
lucaslinaaf21232021-02-22 10:37:16 +0800581 <!-- TODO: Consider removing below two intent filters.
582 It seems like below two intent filters can be removed because when the notification
583 is clicked, this activity will be launched anyway. -->
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900584 <intent-filter>
lucaslinaaf21232021-02-22 10:37:16 +0800585 <action android:name="android.net.action.PROMPT_UNVALIDATED" />
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900586 <category android:name="android.intent.category.DEFAULT" />
587 </intent-filter>
Lorenzo Colitti1449ecd2016-09-15 14:06:46 +0900588 <intent-filter>
lucaslinaaf21232021-02-22 10:37:16 +0800589 <action android:name="android.net.action.PROMPT_LOST_VALIDATION" />
Lorenzo Colitti1449ecd2016-09-15 14:06:46 +0900590 <category android:name="android.intent.category.DEFAULT" />
591 </intent-filter>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100592 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
593 android:value="true" />
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900594 </activity>
595
Fabrice Di Meglio61a1fec2014-08-13 16:22:38 -0700596 <activity android:name="Settings$ApnSettingsActivity"
Jeff Sharkeyc2b43db2012-11-28 17:09:19 -0800597 android:label="@string/apn_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700598 android:exported="true"
Bonian Chencd1fd102020-02-10 02:38:25 +0800599 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800600 <intent-filter android:priority="1">
601 <action android:name="android.settings.APN_SETTINGS" />
602 <category android:name="android.intent.category.DEFAULT" />
603 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800604 <intent-filter>
605 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800606 <category android:name="android.intent.category.DEFAULT" />
607 <category android:name="android.intent.category.VOICE_LAUNCH" />
608 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100609 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
610 android:value="true" />
Fabrice Di Meglio61a1fec2014-08-13 16:22:38 -0700611 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
tom hsu2fd7c9f2020-09-30 21:46:27 +0800612 android:value="com.android.settings.network.apn.ApnSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800613 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
614 android:value="@string/menu_key_network"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800615 </activity>
616
Lei Yudec7a712018-03-29 10:54:22 -0700617 <!-- Keep compatibility with old shortcuts. -->
618 <activity-alias
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800619 android:name="Settings$BluetoothSettingsActivity"
Lei Yudec7a712018-03-29 10:54:22 -0700620 android:label="@string/devices_title"
621 android:targetActivity=".Settings$ConnectedDeviceDashboardActivity"
622 android:exported="true">
Fan Zhang5a981772018-06-22 14:30:09 -0700623 <intent-filter android:priority="10">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800624 <action android:name="android.intent.action.MAIN" />
Lei Yudec7a712018-03-29 10:54:22 -0700625 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800626 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700627 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lei Yudec7a712018-03-29 10:54:22 -0700628 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800629 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
630 android:value="@string/menu_key_connected_devices"/>
Lei Yudec7a712018-03-29 10:54:22 -0700631 </activity-alias>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800632
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800633 <!-- Keep compatibility with old shortcuts. -->
634 <activity-alias android:name=".bluetooth.BluetoothSettings"
Lei Yudec7a712018-03-29 10:54:22 -0700635 android:label="@string/devices_title"
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800636 android:targetActivity="Settings$BluetoothSettingsActivity"
637 android:exported="true"
638 android:clearTaskOnLaunch="true">
639 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lei Yudec7a712018-03-29 10:54:22 -0700640 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800641 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
642 android:value="@string/menu_key_connected_devices"/>
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800643 </activity-alias>
644
Kevin Chyn71899972018-07-10 17:20:29 -0700645 <activity android:name="Settings$FaceSettingsActivity"
646 android:label="@string/security_settings_face_preference_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700647 android:exported="true"
Kevin Chyn71899972018-07-10 17:20:29 -0700648 android:icon="@drawable/ic_face_header">
649 <intent-filter>
650 <action android:name="android.settings.FACE_SETTINGS" />
651 <category android:name="android.intent.category.DEFAULT" />
652 </intent-filter>
653 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
654 android:value="com.android.settings.biometrics.face.FaceSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800655 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
656 android:value="@string/menu_key_security"/>
Kevin Chyn71899972018-07-10 17:20:29 -0700657 </activity>
658
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000659 <activity android:name="Settings$FaceSettingsInternalActivity"
660 android:label="@string/security_settings_face_preference_title"
661 android:exported="false"
662 android:icon="@drawable/ic_face_header"
663 android:taskAffinity="com.android.settings.root">
664 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
665 android:value="com.android.settings.biometrics.face.FaceSettings" />
666 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
667 android:value="@string/menu_key_security"/>
668 </activity>
669
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700670 <activity android:name="Settings$FingerprintSettingsActivity"
671 android:label="@string/security_settings_fingerprint_preference_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700672 android:exported="true"
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700673 android:icon="@drawable/ic_fingerprint_header">
674 <intent-filter>
675 <action android:name="android.settings.FINGERPRINT_SETTINGS" />
676 <category android:name="android.intent.category.DEFAULT" />
677 </intent-filter>
678 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
679 android:value="com.android.settings.biometrics.fingerprint.FingerprintSettings$FingerprintSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800680 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
681 android:value="@string/menu_key_security"/>
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700682 </activity>
683
Mill Chen7edebee2021-04-09 23:14:27 +0800684 <activity android:name="Settings$CombinedBiometricSettingsActivity"
685 android:label="@string/security_settings_biometric_preference_title"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000686 android:exported="false"
687 android:taskAffinity="com.android.settings.root">
Mill Chen7edebee2021-04-09 23:14:27 +0800688 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
689 android:value="com.android.settings.biometrics.combination.CombinedBiometricSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800690 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
691 android:value="@string/menu_key_security"/>
Mill Chen7edebee2021-04-09 23:14:27 +0800692 </activity>
693
694 <activity android:name="Settings$CombinedBiometricProfileSettingsActivity"
Elliot Sisteronbc3d8da2023-04-06 13:51:00 +0000695 android:label="@string/security_settings_work_biometric_preference_title"
Mill Chen7edebee2021-04-09 23:14:27 +0800696 android:exported="false">
697 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
698 android:value="com.android.settings.biometrics.combination.CombinedBiometricProfileSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800699 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
700 android:value="@string/menu_key_security"/>
Mill Chen7edebee2021-04-09 23:14:27 +0800701 </activity>
702
Jake Hambyc090feb2010-12-07 16:27:21 -0800703 <activity android:name=".bluetooth.DevicePickerActivity"
Jake Hambyc090feb2010-12-07 16:27:21 -0800704 android:label="@string/device_picker"
Hemant Gupta3483fc32018-02-01 19:20:29 +0530705 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700706 android:exported="true"
Adam Powelld8537a02012-07-18 19:02:39 -0700707 android:clearTaskOnLaunch="true">
Jake Hambyc090feb2010-12-07 16:27:21 -0800708 <intent-filter>
709 <action android:name="android.bluetooth.devicepicker.action.LAUNCH" />
710 <category android:name="android.intent.category.DEFAULT" />
711 </intent-filter>
712 </activity>
713
Doris Lingc6927582018-01-18 15:04:59 -0800714 <service android:name=".wifi.tether.TetherService"
Jason Monk37832d62014-12-10 17:21:51 -0500715 android:exported="true"
Jeremy Klein78d182f2015-12-28 15:39:39 -0800716 android:permission="android.permission.TETHER_PRIVILEGED" />
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800717
markchien8c713fc2019-02-14 11:11:31 +0800718 <activity android:name=".network.TetherProvisioningActivity"
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800719 android:exported="true"
720 android:permission="android.permission.TETHER_PRIVILEGED"
Jeremy Klein7dbad8c2016-12-19 11:22:38 -0800721 android:excludeFromRecents="true"
Jeremy Kleine3e7b952016-01-25 14:43:49 -0800722 android:theme="@style/Theme.ProvisioningActivity">
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800723 <intent-filter android:priority="1">
724 <action android:name="android.settings.TETHER_PROVISIONING_UI" />
725 <category android:name="android.intent.category.DEFAULT" />
726 </intent-filter>
727 </activity>
728
tom hsu427906c2022-02-14 22:12:43 +0800729 <activity
730 android:name=".network.TetherProvisioningCarrierDialogActivity"
731 android:exported="true"
732 android:permission="android.permission.TETHER_PRIVILEGED"
733 android:excludeFromRecents="true"
734 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar">
735 <intent-filter android:priority="1">
736 <action android:name="android.settings.TETHER_UNSUPPORTED_CARRIER_UI" />
737 <category android:name="android.intent.category.DEFAULT" />
738 </intent-filter>
739 </activity>
740
Jiashen Wangd8bd3bb2020-09-08 15:57:40 -0700741 <activity android:name=".network.telephony.ToggleSubscriptionDialogActivity"
742 android:exported="false"
743 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
SongFerngWang4780be42021-12-21 05:39:09 +0800744 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangd8bd3bb2020-09-08 15:57:40 -0700745
Jiashen Wangff311a22020-10-01 18:36:20 -0700746 <activity android:name=".network.telephony.DeleteEuiccSubscriptionDialogActivity"
747 android:exported="false"
748 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
SongFerngWang4780be42021-12-21 05:39:09 +0800749 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangff311a22020-10-01 18:36:20 -0700750
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800751 <activity
752 android:name="Settings$TetherSettingsActivity"
753 android:label="@string/tether_settings_title_all"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700754 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800755 android:icon="@drawable/ic_homepage_network">
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800756 <intent-filter>
757 <action android:name="android.intent.action.MAIN" />
paulhu08efd362020-02-07 14:42:08 +0800758 <action android:name="android.settings.TETHER_SETTINGS" />
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800759 <category android:name="android.intent.category.DEFAULT" />
760 <category android:name="android.intent.category.VOICE_LAUNCH" />
761 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700762 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Suf077b832022-12-22 20:24:34 +0800763 android:value="com.android.settings.network.tether.TetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800764 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
765 android:value="@string/menu_key_network"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700766 </activity>
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800767
Salvador Martinezbb333712018-06-19 10:27:30 -0700768 <activity
769 android:name="Settings$WifiTetherSettingsActivity"
770 android:label="@string/wifi_hotspot_checkbox_text"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700771 android:exported="true"
Bonian Chen86027472022-03-18 09:23:19 +0800772 android:icon="@drawable/ic_homepage_wifi_tethering">
Salvador Martinezbb333712018-06-19 10:27:30 -0700773 <intent-filter>
774 <action android:name="com.android.settings.WIFI_TETHER_SETTINGS" />
775 <category android:name="android.intent.category.DEFAULT" />
776 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -0700777 <intent-filter android:priority="4">
Fan Zhang2f4355a2018-06-21 15:34:43 -0700778 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -0700779 <category android:name="com.android.settings.SHORTCUT" />
780 </intent-filter>
Salvador Martinezbb333712018-06-19 10:27:30 -0700781 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
782 android:value="com.android.settings.wifi.tether.WifiTetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800783 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
784 android:value="@string/menu_key_network"/>
Salvador Martinezbb333712018-06-19 10:27:30 -0700785 </activity>
786
787
Amith Yamasanieb99f2f2010-12-15 14:12:43 -0800788 <!-- Keep compatibility with old shortcuts. -->
789 <activity-alias android:name=".TetherSettings"
790 android:label="@string/tether_settings_title_all"
791 android:clearTaskOnLaunch="true"
792 android:exported="true"
793 android:targetActivity="Settings$TetherSettingsActivity">
794 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Suf077b832022-12-22 20:24:34 +0800795 android:value="com.android.settings.network.tether.TetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800796 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
797 android:value="@string/menu_key_network"/>
Amith Yamasanieb99f2f2010-12-15 14:12:43 -0800798 </activity-alias>
799
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700800 <activity android:name="Settings$WifiP2pSettingsActivity"
801 android:exported="true">
repo syncb98463f2011-06-30 10:58:43 -0700802 <intent-filter>
803 <action android:name="android.intent.action.MAIN" />
804 <category android:name="android.intent.category.DEFAULT" />
805 <category android:name="android.intent.category.VOICE_LAUNCH" />
806 </intent-filter>
807 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Irfan Sheriff9ef53572011-08-03 15:40:04 -0700808 android:value="com.android.settings.wifi.p2p.WifiP2pSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800809 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
810 android:value="@string/menu_key_network"/>
repo syncb98463f2011-06-30 10:58:43 -0700811 </activity>
812
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800813 <activity
814 android:name="Settings$VpnSettingsActivity"
815 android:label="@string/vpn_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700816 android:exported="true"
Bonian Chen86027472022-03-18 09:23:19 +0800817 android:icon="@drawable/ic_homepage_vpn">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800818 <intent-filter android:priority="1">
Robin Leed3041942016-03-24 16:02:08 +0000819 <action android:name="android.settings.VPN_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800820 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800821 <action android:name="android.net.vpn.SETTINGS" />
822 <category android:name="android.intent.category.DEFAULT" />
823 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -0700824 <intent-filter android:priority="5">
Hung-ying Tyan16177062009-06-10 22:52:44 +0800825 <action android:name="android.intent.action.MAIN" />
Tobias Brunnerf7ed8572010-06-28 13:10:26 +0200826 <category android:name="com.android.settings.SHORTCUT" />
Hung-ying Tyan16177062009-06-10 22:52:44 +0800827 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700828 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Chia-chi Yeh7606a2f2011-07-02 17:45:23 -0700829 android:value="com.android.settings.vpn2.VpnSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800830 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
831 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Ban131b4972014-08-18 13:48:15 +0100832 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
833 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700834 </activity>
Hung-ying Tyan16177062009-06-10 22:52:44 +0800835
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800836 <activity
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400837 android:name="Settings$DataSaverSummaryActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700838 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800839 android:label="@string/data_saver_title">
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400840 <intent-filter android:priority="1">
841 <action android:name="android.settings.DATA_SAVER_SETTINGS" />
842 <category android:name="android.intent.category.DEFAULT" />
843 </intent-filter>
844 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
845 android:value="com.android.settings.datausage.DataSaverSummary" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800846 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
847 android:value="@string/menu_key_network"/>
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400848 </activity>
849
850 <activity
Varun Shahb33256a2022-10-30 18:33:52 +0000851 android:name="Settings$LongBackgroundTasksActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +0200852 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Varun Shahb33256a2022-10-30 18:33:52 +0000853 android:exported="true"
854 android:label="@string/long_background_tasks_label">
855 <intent-filter android:priority="1">
Jing Ji50490a32023-01-06 02:10:42 -0800856 <action android:name="android.settings.MANAGE_APP_LONG_RUNNING_JOBS" />
Varun Shahb33256a2022-10-30 18:33:52 +0000857 <category android:name="android.intent.category.DEFAULT" />
858 </intent-filter>
859 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
860 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
861 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
862 android:value="@string/menu_key_apps"/>
863 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
864 android:value="true" />
865 </activity>
866
867 <activity
868 android:name="Settings$LongBackgroundTasksAppActivity"
869 android:exported="true"
870 android:label="@string/long_background_tasks_label">
871 <intent-filter android:priority="1">
Jing Ji50490a32023-01-06 02:10:42 -0800872 <action android:name="android.settings.MANAGE_APP_LONG_RUNNING_JOBS" />
Varun Shahb33256a2022-10-30 18:33:52 +0000873 <category android:name="android.intent.category.DEFAULT" />
874 <data android:scheme="package" />
875 </intent-filter>
876 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
877 android:value="com.android.settings.applications.appinfo.LongBackgroundTasksDetails" />
878 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
879 android:value="@string/menu_key_apps"/>
880 </activity>
881
882 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800883 android:name="Settings$DateTimeSettingsActivity"
884 android:label="@string/date_and_time"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700885 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800886 android:icon="@drawable/ic_settings_date_time">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800887 <intent-filter android:priority="1">
888 <action android:name="android.settings.DATE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800889 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800890 <category android:name="android.intent.category.DEFAULT" />
891 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800892 <intent-filter>
893 <action android:name="android.intent.action.MAIN" />
Daniel Sandlerf4d1c3e2012-10-01 16:45:10 -0400894 <action android:name="android.intent.action.QUICK_CLOCK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800895 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackborn116d85e2009-06-26 18:20:23 -0700896 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800897 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700898 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +0800899 android:value="com.android.settings.datetime.DateTimeSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800900 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
901 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100902 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
903 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700904 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800905
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800906 <activity
907 android:name="Settings$LocalePickerActivity"
908 android:label="@string/language_picker_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700909 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800910 android:icon="@drawable/ic_settings_language">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800911 <intent-filter android:priority="1">
912 <action android:name="android.settings.LOCALE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800913 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800914 <category android:name="android.intent.category.DEFAULT" />
915 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800916 <intent-filter>
917 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800918 <category android:name="android.intent.category.DEFAULT" />
919 <category android:name="android.intent.category.VOICE_LAUNCH" />
920 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700921 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Mihai Nitad7d48fd2016-01-12 08:55:05 -0800922 android:value="com.android.settings.localepicker.LocaleListEditor" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800923 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
924 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100925 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
926 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700927 </activity>
Michael Chan503c2362009-12-08 22:18:23 -0800928
tmfangc0ed6142018-07-13 11:11:26 +0800929 <activity android:name=".localepicker.LocalePickerWithRegionActivity"
930 android:excludeFromRecents="true"
931 android:configChanges="orientation|keyboardHidden|screenSize"
Arc Wang4a2acd22021-05-19 16:57:21 +0800932 android:exported="false"
933 android:theme="@style/Theme.LocalePickerWithRegionActivity">
tmfangc0ed6142018-07-13 11:11:26 +0800934 </activity>
935
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800936 <activity
tom hsu6fc5bb62022-03-08 17:40:16 +0800937 android:name=".localepicker.AppLocalePickerActivity"
tom hsu26b0bd72021-12-08 16:27:47 +0800938 android:label="@string/app_locale_picker_title"
tom hsub899bd32022-04-28 21:32:33 +0800939 android:configChanges="orientation|screenSize|keyboardHidden"
tom hsu26b0bd72021-12-08 16:27:47 +0800940 android:exported="true" >
941 <intent-filter>
942 <action android:name="android.settings.APP_LOCALE_SETTINGS" />
943 <category android:name="android.intent.category.DEFAULT" />
tom hsu4da192d2021-12-23 20:29:10 +0800944 <data android:scheme="package" />
tom hsu26b0bd72021-12-08 16:27:47 +0800945 </intent-filter>
tom hsu26b0bd72021-12-08 16:27:47 +0800946 </activity>
947
948 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800949 android:name=".Settings$LanguageAndInputSettingsActivity"
Doris Ling204ca742017-07-18 15:43:26 -0700950 android:label="@string/language_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700951 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800952 android:icon="@drawable/ic_settings_language">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800953 <intent-filter>
ronish4e856272022-04-14 14:55:35 +0000954 <action android:name="android.settings.LANGUAGE_SETTINGS"/>
955 <category android:name="android.intent.category.DEFAULT"/>
956 </intent-filter>
957 <intent-filter>
958 <action android:name="android.intent.action.MAIN"/>
959 <category android:name="android.intent.category.VOICE_LAUNCH"/>
960 <category android:name="android.intent.category.DEFAULT"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800961 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700962 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang320d60f2017-03-20 17:32:32 -0700963 android:value="com.android.settings.language.LanguageAndInputSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800964 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
965 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100966 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Fan Zhang320d60f2017-03-20 17:32:32 -0700967 android:value="true"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700968 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800969
danielwbhuangc9cb6802022-08-17 22:17:08 +0800970 <activity
971 android:name=".Settings$LanguageSettingsActivity"
972 android:label="@string/languages_settings"
973 android:exported="true"
974 android:icon="@drawable/ic_settings_languages">
975 <intent-filter>
976 <action android:name="android.settings.LANGUAGE_SETTINGS"/>
977 <category android:name="android.intent.category.DEFAULT"/>
978 </intent-filter>
979 <intent-filter>
980 <action android:name="android.intent.action.MAIN"/>
981 <category android:name="android.intent.category.VOICE_LAUNCH"/>
982 <category android:name="android.intent.category.DEFAULT"/>
983 </intent-filter>
984 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
985 android:value="com.android.settings.language.LanguageSettings"/>
986 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
987 android:value="@string/menu_key_system"/>
988 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
989 android:value="true"/>
990 </activity>
991
992 <activity
Jagrut Desaic36081b2023-04-20 13:50:02 -0700993 android:name=".Settings$NavigationModeSettingsActivity"
994 android:label="@string/system_navigation_title"
995 android:exported="true">
996 <intent-filter>
997 <action android:name="com.android.settings.NAVIGATION_MODE_SETTINGS"/>
998 <category android:name="android.intent.category.DEFAULT"/>
999 </intent-filter>
1000 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1001 android:value="com.android.settings.gestures.SystemNavigationGestureSettings"/>
1002 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1003 android:value="@string/menu_key_system"/>
1004 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1005 android:value="true"/>
1006 </activity>
1007
1008 <activity
tom hsuc03ff3b2023-01-04 08:57:43 +08001009 android:name=".Settings$RegionalPreferencesActivity"
1010 android:label="@string/regional_preferences_title"
1011 android:exported="true" >
1012 <intent-filter android:priority="1">
1013 <action android:name="android.settings.REGIONAL_PREFERENCES_SETTINGS" />
1014 <category android:name="android.intent.category.DEFAULT" />
1015 </intent-filter>
1016 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1017 android:value="com.android.settings.regionalpreferences.RegionalPreferencesEntriesFragment"/>
1018 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1019 android:value="@string/menu_key_system"/>
1020 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1021 android:value="true"/>
1022 </activity>
1023
1024 <activity
danielwbhuangc9cb6802022-08-17 22:17:08 +08001025 android:name=".Settings$KeyboardSettingsActivity"
1026 android:label="@string/keyboard_settings"
1027 android:exported="true"
1028 android:icon="@drawable/ic_settings_language">
1029 <intent-filter>
1030 <action android:name="android.intent.action.MAIN"/>
1031 <category android:name="android.intent.category.VOICE_LAUNCH"/>
1032 <category android:name="android.intent.category.DEFAULT"/>
1033 </intent-filter>
1034 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1035 android:value="com.android.settings.inputmethod.KeyboardSettings"/>
1036 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1037 android:value="@string/menu_key_system"/>
1038 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1039 android:value="true"/>
1040 </activity>
1041
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001042 <activity android:name="Settings$AvailableVirtualKeyboardActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001043 android:exported="true"
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001044 android:label="@string/available_virtual_keyboard_category">
1045 <intent-filter android:priority="1">
1046 <action android:name="android.settings.INPUT_METHOD_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001047 <category android:name="android.intent.category.BROWSABLE" />
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001048 <category android:name="android.intent.category.DEFAULT" />
1049 </intent-filter>
1050 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1051 android:value="com.android.settings.inputmethod.AvailableVirtualKeyboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001052 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1053 android:value="@string/menu_key_system"/>
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001054 </activity>
1055
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001056 <activity
1057 android:name="Settings$ManageAssistActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001058 android:exported="true"
Tsung-Mao Fangdf00a3b2021-06-23 17:53:59 +08001059 android:label="@string/assist_and_voice_input_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001060 <intent-filter android:priority="1">
1061 <action android:name="android.settings.VOICE_INPUT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001062 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001063 <category android:name="android.intent.category.DEFAULT" />
1064 </intent-filter>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07001065 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangdfce62c2017-02-16 15:00:53 -08001066 android:value="com.android.settings.applications.assist.ManageAssist" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001067 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1068 android:value="@string/menu_key_apps"/>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07001069 </activity>
1070
Jeff Browne46c5f32012-04-05 11:42:18 -07001071 <activity android:name="Settings$KeyboardLayoutPickerActivity"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001072 android:label="@string/keyboard_layout_picker_title"
Fan Zhang2f4355a2018-06-21 15:34:43 -07001073 android:clearTaskOnLaunch="true"
1074 android:exported="true">
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001075 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangaceee522016-11-04 14:12:15 -07001076 android:value="com.android.settings.inputmethod.KeyboardLayoutPickerFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001077 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1078 android:value="@string/menu_key_system"/>
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001079 </activity>
1080
1081 <activity android:name="Settings$PhysicalKeyboardActivity"
Yorke Leed4485222016-03-23 11:11:46 -07001082 android:label="@string/physical_keyboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001083 android:exported="true"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001084 android:clearTaskOnLaunch="true">
Yohei Yukawa7c4499d2016-01-27 19:18:52 -08001085 <intent-filter android:priority="1">
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001086 <action android:name="android.settings.HARD_KEYBOARD_SETTINGS" />
Yohei Yukawa7c4499d2016-01-27 19:18:52 -08001087 <category android:name="android.intent.category.DEFAULT" />
1088 </intent-filter>
Jeff Browne46c5f32012-04-05 11:42:18 -07001089 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001090 android:value="com.android.settings.inputmethod.PhysicalKeyboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001091 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1092 android:value="@string/menu_key_system"/>
Jeff Browne46c5f32012-04-05 11:42:18 -07001093 </activity>
1094
Amith Yamasaniaf925282011-11-10 15:28:59 -08001095 <!-- Keep compatibility with old shortcuts. -->
1096 <activity-alias android:name="LanguageSettings"
Doris Ling7e06ed22017-06-07 14:16:43 -07001097 android:label="@string/language_input_gesture_title"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001098 android:clearTaskOnLaunch="true"
1099 android:exported="true"
Doris Lingd299b032017-02-28 17:32:36 -08001100 android:targetActivity="Settings$LanguageAndInputSettingsActivity">
Amith Yamasaniaf925282011-11-10 15:28:59 -08001101 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingd299b032017-02-28 17:32:36 -08001102 android:value="com.android.settings.language.LanguageAndInputSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001103 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1104 android:value="@string/menu_key_system"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001105 </activity-alias>
1106
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001107 <activity
1108 android:name="Settings$SpellCheckersSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001109 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001110 android:label="@string/spellcheckers_settings_title">
satoke077d2b2011-07-25 09:38:11 +09001111 <intent-filter>
1112 <action android:name="android.intent.action.MAIN" />
satoke077d2b2011-07-25 09:38:11 +09001113 <category android:name="android.intent.category.VOICE_LAUNCH" />
1114 <category android:name="android.intent.category.DEFAULT" />
satoke077d2b2011-07-25 09:38:11 +09001115 </intent-filter>
1116 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1117 android:value="com.android.settings.inputmethod.SpellCheckersSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001118 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1119 android:value="@string/menu_key_system"/>
satoke077d2b2011-07-25 09:38:11 +09001120 </activity>
1121
Daisuke Miyakawa649b9f12011-01-30 19:43:08 -08001122 <activity android:name=".inputmethod.InputMethodAndSubtypeEnablerActivity"
satok5e9c5e72011-07-21 15:32:28 +09001123 android:label=""
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001124 android:exported="true"
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001125 android:clearTaskOnLaunch="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001126 <intent-filter android:priority="1">
1127 <action android:name="android.settings.INPUT_METHOD_SUBTYPE_SETTINGS" />
1128 <category android:name="android.intent.category.DEFAULT" />
1129 </intent-filter>
satok4a5f8892010-10-26 18:58:09 +09001130 <intent-filter>
1131 <action android:name="android.intent.action.MAIN" />
satok4a5f8892010-10-26 18:58:09 +09001132 <category android:name="android.intent.category.VOICE_LAUNCH" />
1133 <category android:name="android.intent.category.DEFAULT" />
satok4a5f8892010-10-26 18:58:09 +09001134 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001135 </activity>
satok4a5f8892010-10-26 18:58:09 +09001136
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001137 <activity
1138 android:name="Settings$UserDictionarySettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001139 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001140 android:label="@string/user_dict_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001141 <intent-filter android:priority="1">
1142 <action android:name="android.settings.USER_DICTIONARY_SETTINGS" />
1143 <category android:name="android.intent.category.DEFAULT" />
1144 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001145 <intent-filter>
1146 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001147 <category android:name="android.intent.category.DEFAULT" />
1148 <category android:name="android.intent.category.VOICE_LAUNCH" />
1149 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001150 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Satoshi Kataoka71c915b2013-06-19 22:40:36 +09001151 android:value="com.android.settings.inputmethod.UserDictionaryList" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001152 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1153 android:value="@string/menu_key_system"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001154 </activity>
1155
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001156 <activity android:name=".inputmethod.UserDictionaryAddWordActivity"
Patrick Baumann7a2f9dc2018-04-06 10:08:26 -07001157 android:visibleToInstantApps="true"
Satoshi Kataoka5df33072013-04-30 14:30:12 +09001158 android:label="@string/user_dict_settings_title"
jackqdyulei71a05742017-03-22 13:33:51 -07001159 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Jean Chalarde17eefa2011-12-02 14:56:39 +09001160 android:windowSoftInputMode="stateVisible"
Jean Chalard124283e2011-12-16 19:35:46 +09001161 android:noHistory="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001162 android:exported="true"
Jean Chalarde17eefa2011-12-02 14:56:39 +09001163 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001164 <intent-filter android:priority="1">
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001165 <action android:name="com.android.settings.USER_DICTIONARY_INSERT" />
1166 <category android:name="android.intent.category.DEFAULT" />
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001167 </intent-filter>
1168 </activity>
1169
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001170 <activity
1171 android:name="Settings$ZenModeSettingsActivity"
1172 android:label="@string/zen_mode_settings_title"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001173 android:icon="@drawable/ic_homepage_notification"
Fan Zhangac4ad162018-12-18 11:32:10 -08001174 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001175 <intent-filter android:priority="1">
1176 <action android:name="android.settings.ZEN_MODE_SETTINGS" />
1177 <category android:name="android.intent.category.DEFAULT" />
1178 </intent-filter>
Julia Reynolds200da892018-05-04 08:54:53 -04001179 <intent-filter android:priority="1">
1180 <action android:name="android.settings.ZEN_MODE_PRIORITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001181 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynolds200da892018-05-04 08:54:53 -04001182 <category android:name="android.intent.category.DEFAULT" />
1183 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001184 <intent-filter android:priority="41">
John Spurlock72438062014-02-27 18:01:20 -05001185 <action android:name="android.intent.action.MAIN" />
John Spurlock72438062014-02-27 18:01:20 -05001186 <category android:name="com.android.settings.SHORTCUT" />
1187 </intent-filter>
Beverly4359d4b2017-10-02 09:45:48 -04001188 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001189 android:value="com.android.settings.notification.zen.ZenModeSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001190 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1191 android:value="@string/menu_key_notifications"/>
Beverly4359d4b2017-10-02 09:45:48 -04001192 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1193 android:value="true" />
1194 </activity>
1195
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001196 <activity
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001197 android:name=".notification.zen.ZenSuggestionActivity"
Beverly8f522582018-05-09 15:27:45 -04001198 android:label="@string/zen_mode_settings_title"
Mill Chen71958002019-01-23 10:44:39 +08001199 android:icon="@drawable/ic_suggestion_dnd"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001200 android:exported="true"
Beverly8f522582018-05-09 15:27:45 -04001201 android:theme="@android:style/Theme.NoDisplay">
1202 <intent-filter>
1203 <action android:name="android.intent.action.MAIN" />
1204 <category android:name="com.android.settings.suggested.category.ZEN" />
1205 </intent-filter>
1206 <intent-filter>
1207 <action android:name="android.intent.action.MAIN" />
1208 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1209 </intent-filter>
1210
1211 <meta-data android:name="com.android.settings.dismiss"
1212 android:value="0" />
1213 <meta-data android:name="com.android.settings.title"
1214 android:resource="@string/zen_suggestion_title" />
1215 <meta-data android:name="com.android.settings.summary"
1216 android:resource="@string/zen_suggestion_summary" />
1217 </activity>
1218
1219 <activity
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001220 android:name=".notification.zen.ZenOnboardingActivity"
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001221 android:label="@string/zen_onboarding_dnd_visual_disturbances_header"
Antony Sargent32acddc2018-05-21 16:42:11 -07001222 android:icon="@drawable/ic_notifications"
Julia Reynolds29ba3602018-04-30 09:13:34 -04001223 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001224 android:exported="true">
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001225 <intent-filter android:priority="1">
1226 <action android:name="android.settings.ZEN_MODE_ONBOARDING" />
1227 <category android:name="android.intent.category.DEFAULT" />
1228 </intent-filter>
1229 </activity>
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001230 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001231 android:name="Settings$ZenModeAutomationSettingsActivity"
1232 android:label="@string/zen_mode_automation_settings_title"
Antony Sargent32acddc2018-05-21 16:42:11 -07001233 android:icon="@drawable/ic_notifications"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001234 android:exported="true">
Julia Reynoldse1759022017-03-22 14:05:46 -04001235 <intent-filter android:priority="1">
1236 <action android:name="android.settings.ZEN_MODE_AUTOMATION_SETTINGS" />
1237 <category android:name="android.intent.category.DEFAULT" />
1238 </intent-filter>
1239 <intent-filter android:priority="1">
1240 <action android:name="android.settings.ACTION_CONDITION_PROVIDER_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001241 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynoldse1759022017-03-22 14:05:46 -04001242 <category android:name="android.intent.category.DEFAULT" />
1243 </intent-filter>
John Spurlock72438062014-02-27 18:01:20 -05001244 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001245 android:value="com.android.settings.notification.zen.ZenModeAutomationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001246 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1247 android:value="@string/menu_key_notifications"/>
Julia Reynolds5555d262015-11-09 10:52:17 -05001248 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1249 android:value="true" />
1250 </activity>
1251
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001252 <activity android:name="Settings$WallpaperSettingsActivity"
1253 android:label="@string/wallpaper_settings_fragment_title"
Sunny Shao61aaed42019-03-26 20:14:58 +08001254 android:icon="@drawable/ic_wallpaper"
1255 android:exported="true">
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001256 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang2907f862017-03-17 15:05:14 -07001257 android:value="com.android.settings.wallpaper.WallpaperTypeSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001258 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1259 android:value="@string/menu_key_wallpaper"/>
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001260 </activity>
1261
Fan Zhang2907f862017-03-17 15:05:14 -07001262 <activity android:name=".wallpaper.WallpaperSuggestionActivity"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001263 android:label="@string/wallpaper_settings_title"
Mill Chene1fd5af2019-02-22 20:40:52 +08001264 android:icon="@drawable/ic_wallpaper"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001265 android:exported="true"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001266 android:theme="@android:style/Theme.NoDisplay">
Fan Zhang7afbf0f2017-05-08 09:31:01 -07001267 <intent-filter>
ronishd491d7a42022-05-13 13:42:45 +00001268 <action android:name="android.settings.WALLPAPER_SETTINGS"/>
1269 <category android:name="android.intent.category.DEFAULT"/>
Jason Monkb9e5d232016-01-26 17:43:57 -05001270 </intent-filter>
Maurice Lamd64d3c02017-07-07 18:21:29 -07001271 <intent-filter>
ronishd491d7a42022-05-13 13:42:45 +00001272 <action android:name="android.intent.action.MAIN"/>
1273 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION"/>
1274 </intent-filter>
1275 <intent-filter>
1276 <action android:name="android.intent.action.MAIN"/>
1277 <category android:name="com.android.settings.suggested.category.PERSONALIZE"/>
Maurice Lamd64d3c02017-07-07 18:21:29 -07001278 </intent-filter>
Jason Monkb9e5d232016-01-26 17:43:57 -05001279 <meta-data android:name="com.android.settings.title"
ronishd491d7a42022-05-13 13:42:45 +00001280 android:resource="@string/wallpaper_suggestion_title"/>
Jason Monkec1f28e2016-02-24 17:39:29 -05001281 <meta-data android:name="com.android.settings.summary"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001282 android:resource="@string/wallpaper_suggestion_summary" />
Fan Zhangaf91c1f2017-06-03 15:24:11 -07001283 <meta-data android:name="com.android.settings.dismiss"
1284 android:value="3,7,30" />
Maurice Lam992fa862017-06-09 16:14:36 -07001285 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Jason Monkb9e5d232016-01-26 17:43:57 -05001286 </activity>
1287
Beth Thibodeaubf63dde2019-04-29 17:59:54 -04001288 <activity android:name=".wallpaper.StyleSuggestionActivity"
1289 android:label="@string/style_suggestion_title"
1290 android:icon="@drawable/ic_theme"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001291 android:exported="true"
Beth Thibodeaubf63dde2019-04-29 17:59:54 -04001292 android:theme="@android:style/Theme.NoDisplay">
1293 <intent-filter>
1294 <action android:name="android.intent.action.MAIN" />
1295 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1296 </intent-filter>
1297 <meta-data android:name="com.android.settings.title"
1298 android:resource="@string/style_suggestion_title" />
1299 <meta-data android:name="com.android.settings.summary"
1300 android:resource="@string/style_suggestion_summary" />
1301 <meta-data android:name="com.android.settings.dismiss"
1302 android:value="3,7,30" />
1303 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
1304 </activity>
1305
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001306 <activity
1307 android:name="Settings$ZenModeScheduleRuleSettingsActivity"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001308 android:exported="true">
John Spurlock45fa1402015-04-09 12:50:04 -04001309 <intent-filter android:priority="1">
1310 <action android:name="android.settings.ZEN_MODE_SCHEDULE_RULE_SETTINGS" />
1311 <category android:name="android.intent.category.DEFAULT" />
1312 </intent-filter>
1313 <intent-filter>
1314 <action android:name="android.intent.action.MAIN" />
1315 <category android:name="android.intent.category.DEFAULT" />
John Spurlock45fa1402015-04-09 12:50:04 -04001316 </intent-filter>
1317 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001318 android:value="com.android.settings.notification.zen.ZenModeScheduleRuleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001319 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1320 android:value="@string/menu_key_notifications"/>
John Spurlock45fa1402015-04-09 12:50:04 -04001321 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1322 android:value="true" />
1323 </activity>
1324
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001325 <activity
1326 android:name="Settings$ZenModeEventRuleSettingsActivity"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001327 android:exported="true">
John Spurlockf57bad72015-04-30 09:26:15 -04001328 <intent-filter android:priority="1">
1329 <action android:name="android.settings.ZEN_MODE_EVENT_RULE_SETTINGS" />
1330 <category android:name="android.intent.category.DEFAULT" />
1331 </intent-filter>
John Spurlockf57bad72015-04-30 09:26:15 -04001332 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001333 android:value="com.android.settings.notification.zen.ZenModeEventRuleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001334 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1335 android:value="@string/menu_key_notifications"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08001336 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1337 android:value="true" />
John Spurlockf57bad72015-04-30 09:26:15 -04001338 </activity>
1339
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001340 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001341 android:name="Settings$DisplaySettingsActivity"
1342 android:label="@string/display_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001343 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001344 android:icon="@drawable/ic_homepage_display">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001345 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001346 <action android:name="com.android.settings.DISPLAY_SETTINGS" />
Amith Yamasani0422a3b2009-06-12 14:15:20 -07001347 <action android:name="android.settings.DISPLAY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001348 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001349 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001350 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001351 <intent-filter android:priority="30">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001352 <action android:name="android.intent.action.MAIN" />
Dianne Hackborna54672f2009-06-24 12:45:09 -07001353 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001354 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001355 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Abel Tesfaye029c0952021-03-04 21:55:47 +00001356 android:value="com.android.settings.DisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001357 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1358 android:value="@string/menu_key_display"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001359 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1360 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001361 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001362
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001363 <activity
Abel Tesfaye029c0952021-03-04 21:55:47 +00001364 android:name="Settings$SmartAutoRotateSettingsActivity"
1365 android:label="@string/accelerometer_title"
Sunny Shao75a1a3f2023-04-11 17:13:41 +08001366 android:icon="@drawable/ic_screen_rotation"
Abel Tesfaye029c0952021-03-04 21:55:47 +00001367 android:exported="true">
1368 <intent-filter android:priority="1">
1369 <action android:name="android.settings.AUTO_ROTATE_SETTINGS" />
1370 <category android:name="android.intent.category.DEFAULT" />
1371 </intent-filter>
1372 <intent-filter android:priority="32">
1373 <action android:name="android.intent.action.MAIN" />
1374 <category android:name="com.android.settings.SHORTCUT" />
1375 </intent-filter>
1376 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1377 android:value="com.android.settings.display.SmartAutoRotatePreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001378 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1379 android:value="@string/menu_key_display"/>
Abel Tesfaye029c0952021-03-04 21:55:47 +00001380 </activity>
1381
1382 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001383 android:name="Settings$NightDisplaySettingsActivity"
1384 android:label="@string/night_display_title"
1385 android:enabled="@*android:bool/config_nightDisplayAvailable"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001386 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001387 android:icon="@drawable/ic_homepage_night_display">
Fan Zhang5a981772018-06-22 14:30:09 -07001388 <intent-filter android:priority="32">
Sean Stout763acf02017-06-20 18:07:22 -07001389 <action android:name="android.intent.action.MAIN" />
Sean Stout763acf02017-06-20 18:07:22 -07001390 <category android:name="com.android.settings.SHORTCUT" />
1391 </intent-filter>
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001392 <intent-filter android:priority="1">
1393 <action android:name="android.settings.NIGHT_DISPLAY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001394 <category android:name="android.intent.category.BROWSABLE" />
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001395 <category android:name="android.intent.category.DEFAULT" />
1396 </intent-filter>
Sean Stout06251262017-02-15 14:04:25 -08001397 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1398 android:value="com.android.settings.display.NightDisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001399 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1400 android:value="@string/menu_key_display"/>
Sean Stout40067be2017-04-10 15:31:25 -07001401 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1402 android:value="true" />
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001403 </activity>
1404
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001405 <activity
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001406 android:name="Settings$DarkThemeSettingsActivity"
Xuanang Zhao2598dd42022-09-20 14:37:10 +08001407 android:label="@string/dark_ui_mode"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001408 android:exported="true"
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001409 android:enabled="true">
1410 <intent-filter android:priority="32">
1411 <action android:name="android.intent.action.MAIN" />
1412 <category android:name="com.android.settings.SHORTCUT" />
1413 </intent-filter>
1414 <intent-filter android:priority="1">
1415 <action android:name="android.settings.DARK_THEME_SETTINGS" />
1416 <category android:name="android.intent.category.DEFAULT" />
1417 </intent-filter>
1418 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1419 android:value="com.android.settings.display.darkmode.DarkModeSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001420 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1421 android:value="@string/menu_key_display"/>
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001422 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1423 android:value="true" />
1424 </activity>
1425
1426 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001427 android:name="Settings$NightDisplaySuggestionActivity"
Sean Stout2bc94d62017-05-18 13:39:25 -07001428 android:enabled="@*android:bool/config_nightDisplayAvailable"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001429 android:exported="true"
Mill Chen71958002019-01-23 10:44:39 +08001430 android:icon="@drawable/ic_suggestion_night_display">
Sean Stout2bc94d62017-05-18 13:39:25 -07001431 <intent-filter>
1432 <action android:name="android.intent.action.MAIN" />
1433 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1434 </intent-filter>
1435 <meta-data android:name="com.android.settings.dismiss"
1436 android:value="6,10,30" />
1437 <meta-data android:name="com.android.settings.title"
1438 android:resource="@string/night_display_suggestion_title" />
1439 <meta-data android:name="com.android.settings.summary"
1440 android:resource="@string/night_display_suggestion_summary" />
1441 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1442 android:value="true" />
1443 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1444 android:value="com.android.settings.display.NightDisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001445 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1446 android:value="@string/menu_key_display"/>
Sean Stout2bc94d62017-05-18 13:39:25 -07001447 </activity>
1448
Fan Zhang881d5792018-01-26 10:15:56 -08001449 <activity android:name=".Settings$MyDeviceInfoActivity"
Daniel Nishi12254692018-03-23 13:43:12 -07001450 android:label="@string/about_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001451 android:exported="true"
Sunny Shao86140582019-03-22 15:22:36 +08001452 android:icon="@drawable/ic_homepage_about">
Daniel Nishi1e620952017-12-19 10:15:14 -08001453 <intent-filter android:priority="1">
Daniel Nishi87f35e22018-01-22 15:17:25 -08001454 <action android:name="android.settings.DEVICE_INFO_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001455 <category android:name="android.intent.category.BROWSABLE" />
Daniel Nishi41af55e2018-01-25 15:24:29 -08001456 <action android:name="android.settings.DEVICE_NAME" />
Daniel Nishi1e620952017-12-19 10:15:14 -08001457 <category android:name="android.intent.category.DEFAULT" />
1458 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001459 <intent-filter android:priority="71">
Daniel Nishi1e620952017-12-19 10:15:14 -08001460 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -07001461 <category android:name="com.android.settings.SHORTCUT" />
Daniel Nishi1e620952017-12-19 10:15:14 -08001462 </intent-filter>
Daniel Nishi1e620952017-12-19 10:15:14 -08001463 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Daniel Nishi87f35e22018-01-22 15:17:25 -08001464 android:value="com.android.settings.deviceinfo.aboutphone.MyDeviceInfoFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001465 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1466 android:value="@string/menu_key_about_device"/>
Daniel Nishi1e620952017-12-19 10:15:14 -08001467 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1468 android:value="true" />
1469 </activity>
1470
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001471 <activity
Silin Huangc80b3ab2021-05-13 23:59:33 -07001472 android:name=".Settings$LockScreenSettingsActivity"
1473 android:label="@string/lockscreen_settings_title"
1474 android:exported="true">
1475 <intent-filter android:priority="1">
1476 <action android:name="android.settings.LOCK_SCREEN_SETTINGS" />
1477 <category android:name="android.intent.category.DEFAULT" />
1478 </intent-filter>
1479 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1480 android:value="com.android.settings.security.LockscreenDashboardFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001481 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1482 android:value="@string/menu_key_display"/>
Silin Huangc80b3ab2021-05-13 23:59:33 -07001483 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1484 android:value="true" />
1485 </activity>
1486
1487 <activity
shaoweishen1b58ba52021-12-03 08:47:15 +00001488 android:name=".Settings$BlueToothPairingActivity"
1489 android:label="@string/bluetooth_pairing_page_title"
1490 android:permission="android.permission.BLUETOOTH_SCAN"
1491 android:exported="true">
1492 <intent-filter android:priority="1">
1493 <action android:name="android.settings.BLUETOOTH_PAIRING_SETTINGS" />
1494 <category android:name="android.intent.category.DEFAULT" />
1495 </intent-filter>
1496 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1497 android:value="com.android.settings.bluetooth.BluetoothPairingDetail" />
1498 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1499 android:value="@string/menu_key_connected_devices"/>
1500 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1501 android:value="true" />
1502 </activity>
1503
1504 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001505 android:name="SettingsLicenseActivity"
1506 android:label="@string/settings_license_activity_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001507 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001508 android:configChanges="orientation|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001509 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001510 <action android:name="android.settings.LICENSE" />
1511 <category android:name="android.intent.category.DEFAULT" />
1512 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001513 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1514 android:value="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001515 </activity>
1516
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001517 <activity android:name=".Settings$ModuleLicensesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001518 android:exported="true"
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001519 android:label="@string/module_license_title">
1520 <intent-filter>
1521 <action android:name="android.settings.MODULE_LICENSES" />
1522 <category android:name="android.intent.category.DEFAULT" />
1523 </intent-filter>
1524 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1525 android:value="com.android.settings.deviceinfo.legal.ModuleLicensesDashboard" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001526 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1527 android:value="@string/menu_key_about_device"/>
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001528 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1529 android:value="true" />
1530 </activity>
1531
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001532 <activity
1533 android:name="Settings$ManageApplicationsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001534 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001535 android:exported="true"
Fan Zhangc7635e52019-03-04 14:27:08 -08001536 android:label="@string/applications_settings">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001537 <intent-filter android:priority="1">
Gilles Debunneab189bd2011-07-06 13:10:16 -07001538 <action android:name="android.settings.APPLICATION_SETTINGS" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001539 <action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" />
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001540 <action android:name="android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001541 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001542 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001543 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001544 <intent-filter android:priority="20">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001545 <action android:name="android.intent.action.MAIN" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001546 <category android:name="com.android.settings.SHORTCUT" />
1547 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001548 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001549 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001550 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1551 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001552 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1553 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001554 </activity>
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001555
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001556 <!-- Keep compatibility with old shortcuts. -->
1557 <activity-alias android:name=".applications.ManageApplications"
1558 android:label="@string/applications_settings"
1559 android:exported="true"
1560 android:targetActivity="Settings$ManageApplicationsActivity">
1561 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1562 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001563 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1564 android:value="@string/menu_key_apps"/>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001565 </activity-alias>
1566
Graciela Wissen Putrif6506e02023-07-31 14:20:40 +00001567 <activity android:name="Settings$UserAspectRatioAppListActivity"
1568 android:exported="true"
1569 android:label="@string/aspect_ratio_title">
1570 <intent-filter android:priority="1">
1571 <action android:name="android.settings.MANAGE_USER_ASPECT_RATIO_SETTINGS"/>
1572 <category android:name="android.intent.category.DEFAULT" />
1573 </intent-filter>
1574 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1575 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
1576 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1577 android:value="@string/menu_key_apps"/>
1578 </activity>
1579
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001580 <activity
1581 android:name="Settings$ManageDomainUrlsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001582 android:exported="true"
Sunny Shao600ba962019-07-04 11:52:59 +08001583 android:label="@string/domain_urls_title">
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001584 <intent-filter>
1585 <action android:name="android.settings.MANAGE_DOMAIN_URLS" />
1586 <category android:name="android.intent.category.DEFAULT" />
1587 </intent-filter>
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001588 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
stanley.tf_wang828409a2018-04-13 16:18:13 +08001589 android:value="com.android.settings.applications.managedomainurls.ManageDomainUrls" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001590 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1591 android:value="@string/menu_key_apps"/>
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001592 </activity>
1593
Muyuan Liba115af2016-03-25 15:46:12 -07001594 <activity android:name="Settings$AppMemoryUsageActivity"
1595 android:label="@string/app_list_memory_use"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001596 android:exported="true"
Muyuan Liba115af2016-03-25 15:46:12 -07001597 android:icon="@drawable/ic_settings_memory">
1598 <intent-filter>
1599 <action android:name="android.settings.APP_MEMORY_USAGE" />
1600 <category android:name="android.intent.category.DEFAULT" />
1601 </intent-filter>
Muyuan Liba115af2016-03-25 15:46:12 -07001602 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1603 android:value="com.android.settings.applications.ProcessStatsUi" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001604 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1605 android:value="@string/menu_key_apps"/>
Muyuan Liba115af2016-03-25 15:46:12 -07001606 </activity>
1607
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001608 <activity
1609 android:name="Settings$HighPowerApplicationsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001610 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001611 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001612 android:label="@string/high_power_apps">
Jason Monk3a90d7c2015-06-10 11:03:06 -04001613 <intent-filter android:priority="1">
1614 <action android:name="android.settings.IGNORE_BATTERY_OPTIMIZATION_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001615 <category android:name="android.intent.category.BROWSABLE" />
Jason Monk3a90d7c2015-06-10 11:03:06 -04001616 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn3f98c0c2015-06-12 18:13:54 -07001617 </intent-filter>
Jason Monk1eb54eb2015-04-29 12:46:42 -04001618 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001619 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001620 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1621 android:value="@string/menu_key_apps"/>
Jason Monk1eb54eb2015-04-29 12:46:42 -04001622 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1623 android:value="true" />
1624 </activity>
1625
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001626 <activity
1627 android:name=".datausage.AppDataUsageActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001628 android:exported="true"
Arc Wang358dd2b2022-05-06 04:07:50 +00001629 android:noHistory="true">
Felipe Leme616ff3e2016-04-26 13:50:14 -07001630 <intent-filter android:priority="1">
1631 <action android:name="android.settings.IGNORE_BACKGROUND_DATA_RESTRICTIONS_SETTINGS" />
1632 <category android:name="android.intent.category.DEFAULT" />
1633 <data android:scheme="package" />
1634 </intent-filter>
1635 </activity>
1636
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001637 <activity
1638 android:name=".fuelgauge.RequestIgnoreBatteryOptimizations"
1639 android:label="@string/high_power_apps"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001640 android:exported="true"
Arc Wang5a298fb2020-06-30 14:14:02 +08001641 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
Dianne Hackbornbe4df032015-08-10 14:53:33 -07001642 <intent-filter android:priority="1">
1643 <action android:name="android.settings.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
1644 <category android:name="android.intent.category.DEFAULT" />
1645 <data android:scheme="package" />
1646 </intent-filter>
1647 </activity>
1648
Fan Zhang66156d62018-05-09 17:33:19 -07001649 <activity
1650 android:name=".slices.SliceDeepLinkSpringBoard"
1651 android:excludeFromRecents="true"
Fan Zhang03dd39c2019-04-02 16:41:01 -07001652 android:theme="@android:style/Theme.NoDisplay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001653 android:exported="true"
Alexander Milantevc413b3e2023-03-14 16:11:30 +00001654 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang03dd39c2019-04-02 16:41:01 -07001655 android:permission="android.permission.MODIFY_PHONE_STATE">
Jason Monkf6edc7c2017-11-22 10:04:38 -05001656 <intent-filter>
1657 <action android:name="android.intent.action.VIEW" />
1658 <category android:name="android.intent.category.DEFAULT" />
1659 <category android:name="android.intent.category.BROWSABLE" />
1660 <data android:scheme="settings"
1661 android:host="com.android.settings.slices" />
1662 </intent-filter>
1663 </activity>
1664
Amith Yamasaniaf925282011-11-10 15:28:59 -08001665 <!-- Provide direct entry into manage apps showing running services.
1666 This is for compatibility with old shortcuts. -->
1667 <activity-alias android:name=".RunningServices"
1668 android:label="@string/runningservices_settings_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001669 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001670 android:exported="true"
1671 android:targetActivity="Settings$ManageApplicationsActivity">
1672 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001673 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001674 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1675 android:value="@string/menu_key_system"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001676 </activity-alias>
Lifu Tangfc86f692013-07-30 18:34:35 -07001677
Amith Yamasaniaf925282011-11-10 15:28:59 -08001678 <!-- Provide direct entry into manage apps showing storage usage for apps.
1679 This is for compatibility with old shortcuts. -->
1680 <activity-alias android:name=".applications.StorageUse"
1681 android:label="@string/storageuse_settings_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001682 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001683 android:exported="true"
1684 android:targetActivity="Settings$ManageApplicationsActivity">
1685 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001686 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001687 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1688 android:value="@string/menu_key_apps"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001689 </activity-alias>
1690
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001691 <!-- Still need a top-level activity for showing app details. Aliasing
1692 trick is so the code that is now a fragment can still be called
1693 InstalledAppDetails. -->
1694 <activity android:name=".applications.InstalledAppDetailsTop"
1695 android:label="@string/application_info_label"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001696 android:exported="true" />
Gilles Debunneab189bd2011-07-06 13:10:16 -07001697
Amith Yamasaniaf925282011-11-10 15:28:59 -08001698 <!-- Keep compatibility with old shortcuts. -->
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001699 <activity-alias android:name=".applications.InstalledAppDetails"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001700 android:label="@string/application_info_label"
1701 android:exported="true"
1702 android:targetActivity=".applications.InstalledAppDetailsTop">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001703 <intent-filter android:priority="1">
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001704 <action android:name="android.settings.APPLICATION_DETAILS_SETTINGS" />
Eugene Susla596662c2020-04-13 13:20:50 -07001705 <action android:name="android.intent.action.AUTO_REVOKE_PERMISSIONS" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001706 <category android:name="android.intent.category.DEFAULT" />
1707 <data android:scheme="package" />
1708 </intent-filter>
Jason Chiubbb9f202022-03-10 15:34:55 +08001709 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1710 android:value="@string/menu_key_apps"/>
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001711 </activity-alias>
1712
Chaohui Wang94906cf2023-05-29 16:59:36 +00001713 <activity-alias android:name="ManageFullScreenIntent"
Lyn685f1e42023-02-01 05:41:03 +00001714 android:exported="true"
1715 android:targetActivity=".spa.SpaBridgeActivity">
1716 <meta-data android:name="com.android.settings.spa.DESTINATION"
1717 android:value="TogglePermissionAppList/UseFullScreenIntent"/>
1718 </activity-alias>
1719
Chaohui Wang94906cf2023-05-29 16:59:36 +00001720 <activity-alias android:name="AppManageFullScreenIntent"
Lyn685f1e42023-02-01 05:41:03 +00001721 android:exported="true"
1722 android:targetActivity=".spa.SpaAppBridgeActivity">
1723 <intent-filter>
1724 <action android:name="android.settings.MANAGE_APP_USE_FULL_SCREEN_INTENT" />
1725 <category android:name="android.intent.category.DEFAULT" />
1726 <data android:scheme="package" />
1727 </intent-filter>
1728 <meta-data android:name="com.android.settings.spa.DESTINATION"
1729 android:value="TogglePermissionAppInfoPage/UseFullScreenIntent"/>
1730 </activity-alias>
1731
Ben Lin30ed7c72018-09-13 15:22:03 -07001732 <activity android:name=".applications.InstalledAppOpenByDefaultActivity"
Ben Lin0cdc1032018-02-27 15:31:40 -08001733 android:label="@string/application_info_label"
Arc Wang358dd2b2022-05-06 04:07:50 +00001734 android:exported="true">
Ben Lin0cdc1032018-02-27 15:31:40 -08001735 <intent-filter android:priority="1">
Winsoned6d7332021-04-02 12:43:55 -07001736 <action android:name="android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" />
1737 <!-- Also catch legacy "com." prefixed action. -->
Ben Lin30ed7c72018-09-13 15:22:03 -07001738 <action android:name="com.android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" />
Ben Lin0cdc1032018-02-27 15:31:40 -08001739 <category android:name="android.intent.category.DEFAULT" />
1740 <data android:scheme="package" />
1741 </intent-filter>
Jason Chiubbb9f202022-03-10 15:34:55 +08001742 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1743 android:value="@string/menu_key_apps"/>
Ben Lin0cdc1032018-02-27 15:31:40 -08001744 </activity>
1745
Dianne Hackborn508fedc2010-07-28 17:10:42 -07001746 <!-- Provide direct entry into manage apps showing running services. -->
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001747 <activity android:name="Settings$RunningServicesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001748 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001749 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001750 android:label="@string/runningservices_settings_title">
Dianne Hackbornc58c5492009-08-31 21:33:17 -07001751 <intent-filter>
1752 <action android:name="android.intent.action.MAIN" />
1753 <category android:name="android.intent.category.DEFAULT" />
1754 <category android:name="android.intent.category.MONKEY" />
1755 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackbornc58c5492009-08-31 21:33:17 -07001756 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001757 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001758 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001759 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1760 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001761 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1762 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001763 </activity>
Amith Yamasani1bb6db52010-09-17 13:34:47 -07001764
Amith Yamasaniaf925282011-11-10 15:28:59 -08001765 <!-- Provide direct entry into manage apps showing storage usage of apps. -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001766 <activity
1767 android:name="Settings$StorageUseActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001768 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001769 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001770 android:label="@string/storageuse_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001771 <intent-filter android:priority="1">
1772 <action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" />
1773 <category android:name="android.intent.category.DEFAULT" />
1774 </intent-filter>
Dianne Hackborn728ac352010-06-06 22:51:42 -07001775 <intent-filter>
1776 <action android:name="android.intent.action.MAIN" />
1777 <category android:name="android.intent.category.DEFAULT" />
1778 <category android:name="android.intent.category.MONKEY" />
1779 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackborn728ac352010-06-06 22:51:42 -07001780 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001781 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001782 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001783 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1784 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001785 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1786 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001787 </activity>
Amith Yamasani1bb6db52010-09-17 13:34:47 -07001788
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001789 <activity
1790 android:name="Settings$NotificationStationActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001791 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001792 android:label="@string/notification_log_title">
Fan Zhang5a981772018-06-22 14:30:09 -07001793 <intent-filter android:priority="22">
Daniel Sandler328e2d22013-01-17 13:14:02 -05001794 <action android:name="android.intent.action.MAIN" />
Daniel Sandler328e2d22013-01-17 13:14:02 -05001795 <category android:name="com.android.settings.SHORTCUT" />
1796 </intent-filter>
1797 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001798 android:value="com.android.settings.notification.history.NotificationStation" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001799 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1800 android:value="@string/menu_key_notifications"/>
Daniel Sandler328e2d22013-01-17 13:14:02 -05001801 </activity>
1802
Julia Reynoldsb37d5652019-12-12 08:12:29 -05001803 <activity
1804 android:name=".notification.history.NotificationHistoryActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001805 android:exported="true"
Tsung-Mao Fangefaf49c2021-06-29 14:40:31 +08001806 android:label="@string/notification_history_title"
1807 android:theme="@style/Theme.Settings.NoActionBar">
Julia Reynolds49880c32020-02-11 14:09:42 -05001808 <intent-filter android:priority="1">
1809 <action android:name="android.settings.NOTIFICATION_HISTORY" />
1810 <category android:name="android.intent.category.DEFAULT" />
1811 </intent-filter>
Julia Reynoldsb37d5652019-12-12 08:12:29 -05001812 <intent-filter>
1813 <action android:name="android.intent.action.MAIN" />
1814 <category android:name="android.intent.category.DEFAULT" />
1815 </intent-filter>
1816 </activity>
1817
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001818 <activity android:name=".notification.zen.ZenModeVoiceActivity"
jackqdyulei71a05742017-03-22 13:33:51 -07001819 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001820 android:exported="true"
Barnaby James0474b722015-05-10 16:24:05 -07001821 android:label="@string/zen_mode_settings_title">
Barnaby Jamesc55ea152015-04-13 14:33:53 -07001822 <intent-filter>
1823 <action android:name="android.settings.VOICE_CONTROL_DO_NOT_DISTURB_MODE" />
1824 <category android:name="android.intent.category.DEFAULT" />
1825 <category android:name="android.intent.category.VOICE" />
1826 </intent-filter>
1827 </activity>
1828
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001829 <activity
1830 android:name="Settings$LocationSettingsActivity"
1831 android:label="@string/location_settings_title"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001832 android:icon="@drawable/ic_homepage_location"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001833 android:exported="true"
Yanting Yang5edcc302019-09-05 16:25:17 +08001834 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001835 <intent-filter android:priority="1">
1836 <action android:name="android.settings.LOCATION_SOURCE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001837 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001838 <category android:name="android.intent.category.DEFAULT" />
1839 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001840 <intent-filter android:priority="52">
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001841 <action android:name="android.intent.action.MAIN" />
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001842 <category android:name="com.android.settings.SHORTCUT" />
1843 </intent-filter>
1844 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lifu Tang83ab7c92013-07-29 12:07:48 -07001845 android:value="com.android.settings.location.LocationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001846 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1847 android:value="@string/menu_key_location"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001848 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1849 android:value="true" />
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001850 </activity>
Lifu Tangf72f8302018-04-12 10:01:29 -07001851 <activity
1852 android:name="Settings$ScanningSettingsActivity"
Yu-Han Yange93c1292021-02-17 13:52:39 -08001853 android:label="@string/location_services_screen_title"
tmfang54a5d372018-10-30 16:49:12 +08001854 android:icon="@drawable/ic_homepage_location"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001855 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001856 android:configChanges="orientation|keyboardHidden|screenSize">
Lifu Tangf72f8302018-04-12 10:01:29 -07001857 <intent-filter android:priority="1">
1858 <action android:name="android.settings.LOCATION_SCANNING_SETTINGS" />
1859 <category android:name="android.intent.category.DEFAULT" />
1860 </intent-filter>
1861 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Yu-Han Yange93c1292021-02-17 13:52:39 -08001862 android:value="com.android.settings.location.LocationServices" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001863 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1864 android:value="@string/menu_key_location"/>
Lifu Tangf72f8302018-04-12 10:01:29 -07001865 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1866 android:value="true" />
1867 </activity>
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001868
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001869 <activity
Weng Su9e6966d2021-10-13 23:08:50 +08001870 android:name="Settings$WifiScanningSettingsActivity"
1871 android:label="@string/location_scanning_wifi_always_scanning_title"
1872 android:icon="@drawable/ic_homepage_location"
1873 android:exported="true"
1874 android:permission="android.permission.CHANGE_WIFI_STATE"
1875 android:configChanges="orientation|keyboardHidden|screenSize">
1876 <intent-filter android:priority="1">
1877 <action android:name="android.settings.WIFI_SCANNING_SETTINGS" />
1878 <category android:name="android.intent.category.DEFAULT" />
1879 </intent-filter>
1880 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1881 android:value="com.android.settings.location.WifiScanningFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001882 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1883 android:value="@string/menu_key_location"/>
Weng Su9e6966d2021-10-13 23:08:50 +08001884 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1885 android:value="true" />
1886 </activity>
1887
1888 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001889 android:name=".Settings$SecurityDashboardActivity"
1890 android:label="@string/security_settings_title"
1891 android:icon="@drawable/ic_homepage_security"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001892 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001893 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001894 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001895 <action android:name="android.settings.SECURITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001896 <category android:name="android.intent.category.BROWSABLE" />
Chia-chi Yeh9cec6982009-09-22 23:59:01 +08001897 <action android:name="android.credentials.UNLOCK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001898 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001899 </intent-filter>
1900 <intent-filter>
1901 <action android:name="android.intent.action.MAIN" />
1902 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001903 <category android:name="android.intent.category.VOICE_LAUNCH" />
1904 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001905 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb9164562017-11-03 09:35:12 -07001906 android:value="com.android.settings.security.SecuritySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001907 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1908 android:value="@string/menu_key_security"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001909 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1910 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001911 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001912
Yuri Ufimtsev4eea1262021-12-03 15:43:11 +00001913 <activity
1914 android:name="Settings$SecurityAdvancedSettings"
1915 android:label="@string/security_advanced_settings"
1916 android:exported="true"
1917 android:icon="@drawable/ic_settings_security">
1918 <intent-filter android:priority="1">
1919 <action android:name="com.android.settings.security.SECURITY_ADVANCED_SETTINGS" />
1920 <category android:name="android.intent.category.DEFAULT" />
1921 </intent-filter>
1922 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1923 android:value="com.android.settings.security.SecurityAdvancedSettings" />
Simon Wingroveea8a4ad2022-10-17 15:05:15 +01001924 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1925 android:value="@string/menu_key_security"/>
Yuri Ufimtsev4eea1262021-12-03 15:43:11 +00001926 </activity>
1927
Prabal Singh52ba1332022-12-06 14:28:10 +00001928 <activity
1929 android:name="Settings$MoreSecurityPrivacySettingsActivity"
1930 android:label="@string/more_security_privacy_settings"
1931 android:exported="true">
1932 <intent-filter android:priority="1">
1933 <action android:name="com.android.settings.MORE_SECURITY_PRIVACY_SETTINGS" />
1934 <category android:name="android.intent.category.DEFAULT" />
1935 </intent-filter>
Prabal Singh9afbd452022-12-19 00:28:36 +00001936 <intent-filter>
1937 <action android:name="android.settings.PRIVACY_ADVANCED_SETTINGS" />
1938 <category android:name="android.intent.category.DEFAULT" />
1939 </intent-filter>
Prabal Singh52ba1332022-12-06 14:28:10 +00001940 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1941 android:value="com.android.settings.safetycenter.MoreSecurityPrivacyFragment" />
1942 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1943 android:value="@string/menu_key_safety_center"/>
1944 </activity>
1945
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001946 <activity android:name="MonitoringCertInfoActivity"
Victor Change8a46f22016-04-19 17:45:07 +01001947 android:label=""
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001948 android:theme="@style/Transparent"
David Liu0578aec2023-05-02 17:28:18 +00001949 android:exported="false"
Fan Zhang416ff0a2018-10-26 15:39:39 -07001950 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001951 <intent-filter android:priority="1">
1952 <action android:name="com.android.settings.MONITORING_CERT_INFO" />
1953 <category android:name="android.intent.category.DEFAULT" />
1954 </intent-filter>
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001955 </activity>
1956
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001957 <activity
1958 android:name="Settings$TrustedCredentialsSettingsActivity"
1959 android:label="@string/trusted_credentials"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001960 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001961 android:icon="@drawable/ic_settings_security">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001962 <intent-filter android:priority="1">
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04001963 <action android:name="com.android.settings.TRUSTED_CREDENTIALS" />
1964 <action android:name="com.android.settings.TRUSTED_CREDENTIALS_USER" />
1965 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001966 </intent-filter>
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04001967 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1968 android:value="com.android.settings.TrustedCredentialsSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001969 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1970 android:value="@string/menu_key_security"/>
Victor Chang37afa282016-04-07 21:20:38 +01001971 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1972 android:value="true" />
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04001973 </activity>
1974
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001975 <activity android:name="Settings$PrivacySettingsActivity"
Amith Yamasanie65c9432009-09-22 13:50:19 -07001976 android:label="@string/privacy_settings_title"
Jason Monk4da79e02015-09-10 10:54:36 -04001977 android:icon="@drawable/ic_settings_backup"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001978 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001979 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001980 <intent-filter>
1981 <action android:name="android.intent.action.MAIN" />
1982 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasanie65c9432009-09-22 13:50:19 -07001983 <category android:name="android.intent.category.VOICE_LAUNCH" />
1984 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001985 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
sunnyshao15ec2cf2018-03-29 19:50:20 +08001986 android:value="com.android.settings.backup.PrivacySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001987 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1988 android:value="@string/menu_key_privacy"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001989 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1990 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001991 </activity>
Amith Yamasanie65c9432009-09-22 13:50:19 -07001992
Fan Zhang11482d22019-02-06 10:37:03 -08001993 <activity android:name="Settings$PrivacyDashboardActivity"
1994 android:label="@string/privacy_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001995 android:exported="true"
Fan Zhang11482d22019-02-06 10:37:03 -08001996 android:icon="@drawable/ic_settings_privacy">
1997 <intent-filter>
1998 <action android:name="android.settings.PRIVACY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001999 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhang11482d22019-02-06 10:37:03 -08002000 <category android:name="android.intent.category.DEFAULT" />
2001 </intent-filter>
Felipe Lemea71991a2019-03-07 15:33:51 -08002002 <intent-filter android:priority="1">
2003 <action android:name="android.settings.REQUEST_ENABLE_CONTENT_CAPTURE" />
2004 <category android:name="android.intent.category.DEFAULT" />
2005 </intent-filter>
Fan Zhang11482d22019-02-06 10:37:03 -08002006 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2007 android:value="com.android.settings.privacy.PrivacyDashboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002008 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2009 android:value="@string/menu_key_privacy"/>
tmfangbf2989a2019-04-24 10:29:46 +08002010 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2011 android:value="true" />
Fan Zhang11482d22019-02-06 10:37:03 -08002012 </activity>
2013
Nate Myrend1749cf2022-04-22 13:58:50 -07002014 <activity android:name="Settings$PrivacyControlsActivity"
2015 android:label="@string/privacy_controls_title"
2016 android:exported="true"
2017 android:icon="@drawable/ic_settings_privacy">
2018 <intent-filter android:priority="1">
2019 <action android:name="android.settings.PRIVACY_CONTROLS" />
2020 <category android:name="android.intent.category.DEFAULT" />
2021 </intent-filter>
2022 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2023 android:value="com.android.settings.privacy.PrivacyControlsFragment" />
2024 </activity>
2025
alinasuarez6ffa9da2021-07-14 18:59:31 +00002026 <activity android:name=".development.tare.TareHomePage"
2027 android:label="@string/tare_settings"
2028 android:exported="false" />
2029
alinasuarezaef6ac22021-07-30 20:25:19 +00002030 <activity android:name=".development.tare.DropdownActivity"
2031 android:exported="false" />
2032
Christopher Tate4f338782011-07-25 12:09:10 -07002033 <activity android:name="SetFullBackupPassword"
Doris Ling03a3b512017-10-18 14:25:01 -07002034 android:label="@string/local_backup_password_title"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002035 android:exported="false" />
Christopher Tate4f338782011-07-25 12:09:10 -07002036
Eran Messeri1e9bd272019-01-24 10:12:01 +00002037 <activity android:name=".security.CredentialStorage"
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002038 android:theme="@style/Transparent"
Amith Yamasanib9812022011-08-26 15:39:16 -07002039 android:launchMode="singleTop"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002040 android:exported="true"
Gilles Debunneab189bd2011-07-06 13:10:16 -07002041 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002042 <intent-filter android:priority="1">
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002043 <action android:name="com.android.credentials.INSTALL" />
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002044 <action android:name="com.android.credentials.RESET" />
2045 <category android:name="android.intent.category.DEFAULT" />
2046 </intent-filter>
2047 </activity>
2048
Alex Johnstonc0c75a32019-10-18 14:20:27 +01002049 <activity android:name=".security.InstallCaCertificateWarning"
2050 android:theme="@style/GlifV3Theme.Light"
2051 android:exported="false">
2052 </activity>
2053
Alex Johnston580b7af2020-11-26 12:40:38 +00002054 <activity android:name=".security.RequestManageCredentials"
Alex Johnston8d06d632021-06-21 23:33:17 +01002055 android:theme="@style/Theme.SubSettings"
Alex Johnston580b7af2020-11-26 12:40:38 +00002056 android:exported="true">
2057 <intent-filter>
2058 <action android:name="android.security.MANAGE_CREDENTIALS"/>
2059 <category android:name="android.intent.category.DEFAULT"/>
2060 </intent-filter>
2061 </activity>
2062
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002063 <activity
2064 android:name="Settings$DeviceAdminSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002065 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002066 android:label="@string/device_admin_settings_title">
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002067 <intent-filter>
2068 <action android:name="android.intent.action.MAIN" />
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002069 <category android:name="android.intent.category.DEFAULT" />
2070 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002071 </intent-filter>
Amith Yamasania1d01842011-01-24 16:02:11 -08002072 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangca6d86c2018-06-14 12:52:06 -07002073 android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002074 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2075 android:value="@string/menu_key_security"/>
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002076 </activity>
2077
Amith Yamasaniaf925282011-11-10 15:28:59 -08002078 <!-- Keep compatibility with old shortcuts. -->
2079 <activity-alias android:name="DeviceAdminSettings"
2080 android:label="@string/device_admin_settings_title"
Amith Yamasaniaf925282011-11-10 15:28:59 -08002081 android:exported="true"
2082 android:targetActivity="Settings$DeviceAdminSettingsActivity">
2083 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangca6d86c2018-06-14 12:52:06 -07002084 android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002085 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2086 android:value="@string/menu_key_security"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08002087 </activity-alias>
2088
Fan Zhangca6d86c2018-06-14 12:52:06 -07002089 <activity android:name=".applications.specialaccess.deviceadmin.DeviceAdminAdd"
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002090 android:label="@string/device_admin_add_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002091 android:exported="true"
Tsung-Mao Fangefaf49c2021-06-29 14:40:31 +08002092 android:clearTaskOnLaunch="true"
2093 android:theme="@style/Theme.Settings.NoActionBar">
Tsung-Mao Fang56e9b252022-03-16 18:03:40 +08002094 <intent-filter android:priority="1000">
Dianne Hackborn28429032010-01-25 18:56:17 -08002095 <action android:name="android.app.action.ADD_DEVICE_ADMIN" />
2096 <category android:name="android.intent.category.DEFAULT" />
2097 </intent-filter>
2098 </activity>
2099
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002100 <activity android:name=".applications.specialaccess.deviceadmin.ProfileOwnerAdd"
2101 android:excludeFromRecents="true"
2102 android:theme="@style/Transparent"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002103 android:exported="true"
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002104 android:clearTaskOnLaunch="true">
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002105 <intent-filter android:priority="1000">
2106 <action android:name="android.app.action.SET_PROFILE_OWNER" />
2107 <category android:name="android.intent.category.DEFAULT" />
2108 </intent-filter>
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002109 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002110
2111 <activity
2112 android:name="Settings$UsageAccessSettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02002113 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002114 android:exported="true"
Fan Zhangc7635e52019-03-04 14:27:08 -08002115 android:label="@string/usage_access_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002116 <intent-filter android:priority="1">
2117 <action android:name="android.settings.USAGE_ACCESS_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002118 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002119 <category android:name="android.intent.category.DEFAULT" />
2120 </intent-filter>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07002121 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07002122 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002123 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2124 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08002125 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2126 android:value="true" />
Dianne Hackbornb51253c2014-08-12 15:08:04 -07002127 </activity>
2128
Fan Zhang104ee2e2018-09-20 16:21:53 -07002129 <activity
2130 android:name="Settings$AppUsageAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002131 android:exported="true"
Arc Wang358dd2b2022-05-06 04:07:50 +00002132 android:label="@string/usage_access_title">
Fan Zhang104ee2e2018-09-20 16:21:53 -07002133 <intent-filter>
2134 <action android:name="android.settings.USAGE_ACCESS_SETTINGS"/>
2135 <category android:name="android.intent.category.DEFAULT"/>
2136 <data android:scheme="package"/>
2137 </intent-filter>
2138 <meta-data
2139 android:name="com.android.settings.FRAGMENT_CLASS"
2140 android:value="com.android.settings.applications.UsageAccessDetails"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08002141 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2142 android:value="@string/menu_key_apps"/>
Fan Zhang104ee2e2018-09-20 16:21:53 -07002143 </activity>
2144
Jason Monkb7e43802016-06-06 16:01:58 -04002145 <activity android:name="Settings$IccLockSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002146 android:exported="true"
Bonian Chencd1fd102020-02-10 02:38:25 +08002147 android:label="@string/sim_lock_settings">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002148 <intent-filter>
2149 <action android:name="android.intent.action.MAIN" />
2150 <category android:name="android.intent.category.DEFAULT" />
2151 <category android:name="android.intent.category.VOICE_LAUNCH" />
2152 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -04002153 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2154 android:value="com.android.settings.IccLockSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002155 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2156 android:value="@string/menu_key_security"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002157 </activity>
2158
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002159 <activity
2160 android:name="Settings$AccessibilitySettingsActivity"
2161 android:label="@string/accessibility_settings"
2162 android:icon="@drawable/ic_homepage_accessibility"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002163 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002164 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002165 <intent-filter android:priority="1">
2166 <action android:name="android.settings.ACCESSIBILITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002167 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002168 <category android:name="android.intent.category.DEFAULT" />
2169 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07002170 <intent-filter android:priority="60">
svetoslavganova05d0dc2009-05-14 22:26:34 -07002171 <action android:name="android.intent.action.MAIN" />
Costin Manolache672b3c62011-07-21 10:38:15 -07002172 <category android:name="com.android.settings.SHORTCUT" />
svetoslavganova05d0dc2009-05-14 22:26:34 -07002173 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002174 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Alan Viverette341ff662013-07-18 17:49:33 -07002175 android:value="com.android.settings.accessibility.AccessibilitySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002176 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2177 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002178 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2179 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002180 </activity>
Michael Chan732c1da2010-04-06 14:49:30 -07002181
Jackal Guo29365512019-02-14 15:19:53 +08002182 <activity
2183 android:name="Settings$AccessibilityDetailsSettingsActivity"
2184 android:label="@string/accessibility_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002185 android:exported="true"
Jackal Guo29365512019-02-14 15:19:53 +08002186 android:permission="android.permission.OPEN_ACCESSIBILITY_DETAILS_SETTINGS">
2187 <intent-filter android:priority="1">
2188 <action android:name="android.settings.ACCESSIBILITY_DETAILS_SETTINGS" />
2189 <category android:name="android.intent.category.DEFAULT" />
2190 </intent-filter>
2191 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2192 android:value="com.android.settings.accessibility.AccessibilityDetailsSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002193 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2194 android:value="@string/menu_key_accessibility"/>
Jackal Guo29365512019-02-14 15:19:53 +08002195 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2196 android:value="true" />
2197 </activity>
2198
Anna Galuszab1795f52016-01-08 14:37:16 -08002199 <activity android:name=".accessibility.AccessibilitySettingsForSetupWizardActivity"
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002200 android:icon="@drawable/ic_accessibility_suggestion"
Anna Galuszab1795f52016-01-08 14:37:16 -08002201 android:label="@string/vision_settings_title"
Peter_Liangd2fc78d2022-03-09 21:17:35 +08002202 android:exported="true">
Anna Galuszab1795f52016-01-08 14:37:16 -08002203 <intent-filter android:priority="1">
2204 <action android:name="android.settings.ACCESSIBILITY_SETTINGS_FOR_SUW" />
2205 <category android:name="android.intent.category.DEFAULT" />
2206 </intent-filter>
cnchen7a83d512019-05-06 10:19:10 +08002207 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2208 android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" />
2209 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2210 android:value="true" />
2211 </activity>
2212
2213 <activity-alias
2214 android:name=".FontSizeSettingsForSetupWizardActivity"
2215 android:exported="true"
2216 android:targetActivity=".accessibility.AccessibilitySettingsForSetupWizardActivity">
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002217 <intent-filter>
2218 <action android:name="android.intent.action.MAIN" />
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002219 </intent-filter>
2220 <meta-data android:name="com.android.settings.title"
2221 android:resource="@string/vision_settings_suggestion_title" />
Maurice Lam992fa862017-06-09 16:14:36 -07002222 <meta-data android:name="com.android.settings.icon_tintable"
2223 android:value="true" />
Anna Galuszab1795f52016-01-08 14:37:16 -08002224 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2225 android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" />
cnchen7a83d512019-05-06 10:19:10 +08002226 </activity-alias>
Anna Galuszab1795f52016-01-08 14:37:16 -08002227
Peter_Liangefb44b72022-01-25 09:05:23 +08002228 <activity-alias
2229 android:name=".TextReadingForSetupWizardActivity"
2230 android:exported="true"
2231 android:icon="@drawable/ic_font_download"
2232 android:targetActivity=".accessibility.AccessibilitySettingsForSetupWizardActivity">
2233 <intent-filter>
2234 <action android:name="android.intent.action.MAIN" />
2235 <!-- TODO(b/1352717): Consider replacing it with another category, temporarily
2236 using an older one to avoid side problems. -->
2237 <category android:name="com.android.settings.suggested.category.DISPLAY_SETTINGS" />
2238 </intent-filter>
2239
2240 <meta-data
2241 android:name="com.android.settings.title"
Peter_Liang61264d02022-02-12 17:36:20 +08002242 android:resource="@string/accessibility_text_reading_options_suggestion_title" />
Peter_Liangefb44b72022-01-25 09:05:23 +08002243 <meta-data
2244 android:name="com.android.settings.icon_tintable"
2245 android:value="true" />
2246 <meta-data
2247 android:name="com.android.settings.FRAGMENT_CLASS"
2248 android:value="com.android.settings.accessibility.TextReadingPreferenceFragmentForSetupWizard" />
2249 </activity-alias>
2250
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002251 <activity
menghanli38714382022-09-28 13:14:51 +08002252 android:name="Settings$TextReadingSettingsActivity"
2253 android:exported="true"
2254 android:label="@string/accessibility_text_reading_options_title">
2255 <intent-filter>
menghanli0d2c2c42022-10-05 12:14:53 +08002256 <action android:name="android.settings.TEXT_READING_SETTINGS" />
menghanli38714382022-09-28 13:14:51 +08002257 <category android:name="android.intent.category.DEFAULT" />
2258 </intent-filter>
2259 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2260 android:value="com.android.settings.accessibility.TextReadingPreferenceFragment" />
2261 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2262 android:value="@string/menu_key_accessibility"/>
2263 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2264 android:value="true" />
2265 </activity>
2266
2267 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002268 android:name="Settings$AccessibilityDaltonizerSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002269 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002270 android:label="@string/accessibility_display_daltonizer_preference_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002271 <intent-filter android:priority="1">
2272 <action android:name="com.android.settings.ACCESSIBILITY_COLOR_SPACE_SETTINGS" />
2273 <category android:name="android.intent.category.DEFAULT" />
2274 </intent-filter>
Alan Viverettefc0ab212013-10-02 16:36:33 -07002275 <intent-filter>
2276 <action android:name="android.intent.action.MAIN" />
Alan Viverettefc0ab212013-10-02 16:36:33 -07002277 <category android:name="android.intent.category.DEFAULT" />
2278 </intent-filter>
2279 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2280 android:value="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002281 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2282 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002283 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2284 android:value="true" />
Alan Viverettefc0ab212013-10-02 16:36:33 -07002285 </activity>
2286
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002287 <activity
Sally9fe91b92020-10-16 22:45:27 +00002288 android:name="Settings$ReduceBrightColorsSettingsActivity"
2289 android:exported="true"
2290 android:label="@string/reduce_bright_colors_preference_title">
2291 <intent-filter android:priority="1">
2292 <action android:name="android.settings.REDUCE_BRIGHT_COLORS_SETTINGS" />
2293 <category android:name="android.intent.category.DEFAULT" />
2294 </intent-filter>
2295 <intent-filter>
2296 <action android:name="android.intent.action.MAIN" />
2297 <category android:name="android.intent.category.DEFAULT" />
2298 </intent-filter>
2299 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2300 android:value="com.android.settings.accessibility.ToggleReduceBrightColorsPreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002301 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2302 android:value="@string/menu_key_accessibility"/>
Sally9fe91b92020-10-16 22:45:27 +00002303 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2304 android:value="true" />
2305 </activity>
2306
2307 <activity
jasonwshsu9fcd1f92021-10-08 15:43:08 +08002308 android:name="Settings$AccessibilityInversionSettingsActivity"
2309 android:exported="true"
2310 android:label="@string/accessibility_display_inversion_preference_title">
2311 <intent-filter android:priority="1">
2312 <action android:name="android.settings.COLOR_INVERSION_SETTINGS" />
2313 <category android:name="android.intent.category.DEFAULT" />
2314 </intent-filter>
2315 <intent-filter>
2316 <action android:name="android.intent.action.MAIN" />
2317 <category android:name="android.intent.category.DEFAULT" />
2318 </intent-filter>
2319 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2320 android:value="com.android.settings.accessibility.ToggleColorInversionPreferenceFragment" />
2321 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2322 android:value="@string/menu_key_accessibility"/>
2323 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2324 android:value="true" />
2325 </activity>
2326
2327 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002328 android:name="Settings$CaptioningSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002329 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002330 android:label="@string/accessibility_captioning_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002331 <intent-filter android:priority="1">
2332 <action android:name="android.settings.CAPTIONING_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002333 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002334 <category android:name="android.intent.category.DEFAULT" />
2335 </intent-filter>
Alan Viverettecc0e7822013-08-06 13:53:58 -07002336 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
menghanlie5712562022-08-01 16:47:12 +08002337 android:value="com.android.settings.accessibility.CaptioningPropertiesFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002338 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2339 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002340 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2341 android:value="true" />
Alan Viverettecc0e7822013-08-06 13:53:58 -07002342 </activity>
2343
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002344 <activity
menghanli3c62eb12022-10-04 08:13:16 +08002345 android:name="Settings$ColorAndMotionActivity"
2346 android:exported="true"
2347 android:label="@string/accessibility_color_and_motion_title">
2348 <intent-filter>
menghanli0d2c2c42022-10-05 12:14:53 +08002349 <action android:name="android.settings.ACCESSIBILITY_COLOR_MOTION_SETTINGS" />
menghanli3c62eb12022-10-04 08:13:16 +08002350 <category android:name="android.intent.category.DEFAULT" />
2351 </intent-filter>
2352 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2353 android:value="com.android.settings.accessibility.ColorAndMotionFragment" />
2354 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2355 android:value="@string/menu_key_accessibility"/>
2356 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2357 android:value="true" />
2358 </activity>
2359
2360 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002361 android:name="Settings$TextToSpeechSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002362 android:exported="true"
Fan Zhangbcd8a252019-04-29 13:35:20 -07002363 android:label="@string/tts_settings">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002364 <intent-filter android:priority="1">
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002365 <action android:name="com.android.settings.TTS_SETTINGS" />
Dianne Hackborn116d85e2009-06-26 18:20:23 -07002366 <category android:name="android.intent.category.DEFAULT" />
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002367 </intent-filter>
Gilles Debunneab189bd2011-07-06 13:10:16 -07002368 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Narayan Kamathfdd94d82011-11-04 16:12:27 +00002369 android:value="com.android.settings.tts.TextToSpeechSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002370 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2371 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002372 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2373 android:value="true" />
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002374 </activity>
2375
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002376 <activity
2377 android:name="Settings$EnterprisePrivacySettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002378 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002379 android:label="@string/enterprise_privacy_settings">
Bartosz Fabianowski0e4a1e52016-11-28 19:16:34 +01002380 <intent-filter>
2381 <action android:name="android.settings.ENTERPRISE_PRIVACY_SETTINGS" />
2382 <category android:name="android.intent.category.DEFAULT" />
2383 </intent-filter>
Bartosz Fabianowski05061fc2016-11-14 12:04:49 +01002384 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2385 android:value="com.android.settings.enterprise.EnterprisePrivacySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002386 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2387 android:value="@string/menu_key_privacy"/>
Bartosz Fabianowski05061fc2016-11-14 12:04:49 +01002388 </activity>
2389
Jim Miller9757e302010-12-17 18:23:23 -08002390 <!-- Lock screen settings -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002391 <activity android:name=".password.ConfirmDeviceCredentialActivity"
Amith Yamasani39fb0622014-12-17 10:52:52 -08002392 android:exported="true"
Mill Chen078af332019-04-04 15:39:27 -07002393 android:taskAffinity="com.android.settings.workmode"
Kevin Chynb3ee2312018-10-04 15:01:43 -07002394 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002395 <intent-filter android:priority="1">
Jim Miller75fe9e02014-08-13 14:52:52 -07002396 <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL" />
Adrian Roos5a9a3cd2017-03-30 18:02:25 -07002397 <action android:name="android.app.action.CONFIRM_FRP_CREDENTIAL" />
Rhed Jaof01b99e2023-05-18 11:16:22 +00002398 <action android:name="android.app.action.PREPARE_REPAIR_MODE_DEVICE_CREDENTIAL" />
Rhed Jaob7a4a7d2023-04-17 11:39:40 +00002399 <action android:name="android.app.action.CONFIRM_REPAIR_MODE_DEVICE_CREDENTIAL" />
Jim Miller75fe9e02014-08-13 14:52:52 -07002400 <category android:name="android.intent.category.DEFAULT" />
2401 </intent-filter>
Jay Civelli09b52282014-07-10 17:27:07 -07002402 </activity>
Maurice Lam2eb170c2017-04-28 16:18:47 -07002403 <!-- Activity alias for compatibility -->
2404 <activity-alias android:name=".ConfirmDeviceCredentialActivity"
2405 android:targetActivity=".password.ConfirmDeviceCredentialActivity"
2406 android:exported="true" />
Brian Leed4f8e582022-12-05 15:58:01 -08002407 <!-- Activity alias for remote lockscreen validation. Enforces required permission -->
2408 <activity-alias
2409 android:name=".ConfirmRemoteDeviceCredentialActivity"
2410 android:targetActivity=".password.ConfirmDeviceCredentialActivity"
2411 android:permission="android.permission.CHECK_REMOTE_LOCKSCREEN"
2412 android:exported="true">
2413 <intent-filter>
2414 <action android:name="android.app.action.CONFIRM_REMOTE_DEVICE_CREDENTIAL"/>
2415 <category android:name="android.intent.category.DEFAULT" />
2416 </intent-filter>
2417 </activity-alias>
Jay Civelli09b52282014-07-10 17:27:07 -07002418
Clara Bayarric5cde052015-10-22 17:24:43 +01002419 <!-- Note this must not be exported since it authenticates the given user -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002420 <activity android:name=".password.ConfirmDeviceCredentialActivity$InternalActivity"
Clara Bayarric5cde052015-10-22 17:24:43 +01002421 android:exported="false"
2422 android:permission="android.permission.MANAGE_USERS"
Mill Chen078af332019-04-04 15:39:27 -07002423 android:taskAffinity="com.android.settings.workmode"
Kevin Chyn127da9c2018-11-09 16:13:53 -08002424 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Clara Bayarric5cde052015-10-22 17:24:43 +01002425 <intent-filter android:priority="1">
2426 <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL_WITH_USER" />
2427 <category android:name="android.intent.category.DEFAULT" />
2428 </intent-filter>
2429 </activity>
2430
Maurice Lamecd2b7b2014-12-01 10:41:49 -08002431 <activity android:name=".SetupRedactionInterstitial"
Udam Sainidd05ab72016-03-21 17:35:08 -07002432 android:enabled="false"
2433 android:exported="true"
pastychang79614822019-01-03 10:12:54 +08002434 android:theme="@style/SudThemeGlif.DayNight"
Maurice Lam43366f12016-08-05 16:57:59 -07002435 android:label="@string/lock_screen_notifications_interstitial_title"
Udam Sainidd05ab72016-03-21 17:35:08 -07002436 android:icon="@drawable/ic_suggested_notifications">
2437 <intent-filter>
2438 <action android:name="android.intent.action.MAIN" />
Maurice Lam4331a2e2017-06-07 20:59:51 -07002439 <category android:name="com.android.settings.suggested.category.LOCK_SCREEN_REDACTION" />
Udam Sainidd05ab72016-03-21 17:35:08 -07002440 </intent-filter>
2441 <meta-data android:name="com.android.settings.require_user_type"
2442 android:value="primary" />
2443 <meta-data android:name="com.android.settings.title"
2444 android:resource="@string/notification_suggestion_title" />
2445 <meta-data android:name="com.android.settings.summary"
2446 android:resource="@string/notification_suggestion_summary" />
Maurice Lam992fa862017-06-09 16:14:36 -07002447 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Sainidd05ab72016-03-21 17:35:08 -07002448 </activity>
Maurice Lamecd2b7b2014-12-01 10:41:49 -08002449
Maurice Lamd189ac52016-06-15 13:39:34 -07002450 <activity android:name=".notification.RedactionInterstitial"
Maurice Lame0e81b62017-04-05 12:10:37 -07002451 android:theme="@style/GlifTheme.Light" />
Chris Wren51ae3322014-08-28 15:45:31 -04002452
2453 <activity android:name=".notification.RedactionSettingsStandalone"
2454 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002455 <intent-filter android:priority="1">
Chris Wren51ae3322014-08-28 15:45:31 -04002456 <action android:name="android.settings.ACTION_APP_NOTIFICATION_REDACTION" />
2457 <category android:name="android.intent.category.DEFAULT" />
2458 </intent-filter>
2459 </activity>
Jay Civelli09b52282014-07-10 17:27:07 -07002460
Maurice Lam2eb170c2017-04-28 16:18:47 -07002461 <activity android:name=".password.ConfirmLockPattern"
Maurice Lame0e81b62017-04-05 12:10:37 -07002462 android:theme="@style/GlifTheme.Light"/>
Michael Chan503c2362009-12-08 22:18:23 -08002463
Maurice Lam2eb170c2017-04-28 16:18:47 -07002464 <activity android:name=".password.ConfirmLockPassword"
Jorim Jaggiff41a9a2015-06-09 15:31:28 -07002465 android:windowSoftInputMode="stateHidden|adjustResize"
Maurice Lame0e81b62017-04-05 12:10:37 -07002466 android:theme="@style/GlifTheme.Light"/>
Jim Miller9757e302010-12-17 18:23:23 -08002467
Pavel Grafov04f783c2020-02-13 21:39:37 +00002468 <activity android:name=".password.ForgotPasswordActivity"
Oli Thompsoncff34af2022-10-31 14:27:17 +00002469 android:theme="@style/GlifV3Theme.DayNight"
Pavel Grafov04f783c2020-02-13 21:39:37 +00002470 android:exported="false"/>
2471
Joe Bolingera8808f72021-06-10 13:36:38 -07002472 <activity android:name=".biometrics.face.FaceEnrollParentalConsent"
2473 android:exported="false"
2474 android:screenOrientation="portrait"/>
2475
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002476 <activity android:name=".biometrics.face.FaceEnrollIntroduction"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002477 android:exported="true"
2478 android:screenOrientation="portrait">
Curtis Belmonte3de8abe2021-11-02 14:03:47 -07002479 <intent-filter>
2480 <action android:name="android.settings.FACE_ENROLL"/>
2481 <category android:name="android.intent.category.DEFAULT"/>
2482 </intent-filter>
2483 </activity>
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002484
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002485 <activity android:name=".biometrics.face.FaceEnrollIntroductionInternal"
2486 android:exported="false"
2487 android:screenOrientation="portrait"
2488 android:taskAffinity="com.android.settings.root" />
2489
joshmccloskey04582622019-05-06 21:42:14 -07002490 <activity android:name=".biometrics.face.FaceEnrollEducation"
2491 android:exported="false"
2492 android:screenOrientation="portrait"/>
2493
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002494 <activity android:name=".biometrics.face.FaceEnrollEnrolling"
2495 android:exported="false"
2496 android:screenOrientation="portrait"/>
2497
2498 <activity android:name=".biometrics.face.FaceEnrollFinish"
2499 android:exported="false"
2500 android:screenOrientation="portrait"/>
Kevin Chyn4882e872018-06-25 17:58:31 -07002501
Joe Bolingerfb515ed2021-06-16 14:07:37 -07002502 <activity android:name=".biometrics.BiometricHandoffActivity"
Joe Bolingerdde461d2021-12-01 00:59:57 +00002503 android:exported="false"/>
Joe Bolingerfb515ed2021-06-16 14:07:37 -07002504
Kevin Chyn5ab064f2019-04-12 15:19:12 -07002505 <!-- Must not be exported -->
2506 <activity android:name=".biometrics.BiometricEnrollActivity$InternalActivity"
2507 android:exported="false"
2508 android:theme="@style/GlifTheme.Light"/>
2509
Kevin Chyn66d09a42018-10-31 13:30:44 -07002510 <activity android:name=".biometrics.BiometricEnrollActivity"
2511 android:exported="true"
Milton Wua4f30402022-04-18 17:18:57 +08002512 android:configChanges="orientation|screenSize|keyboard|keyboardHidden|smallestScreenSize|screenLayout|density"
Kevin Chyn66d09a42018-10-31 13:30:44 -07002513 android:theme="@style/GlifTheme.Light">
2514 <intent-filter>
2515 <action android:name="android.settings.BIOMETRIC_ENROLL" />
Han Xub7d10772022-08-15 19:19:55 +08002516 <category android:name="android.intent.category.BROWSABLE" />
Kevin Chyn66d09a42018-10-31 13:30:44 -07002517 <category android:name="android.intent.category.DEFAULT" />
2518 </intent-filter>
2519 </activity>
2520
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002521 <activity android:name=".biometrics.fingerprint.FingerprintSettings"
2522 android:exported="false"
2523 android:taskAffinity="com.android.settings.root" />
Kevin Chyn871e55f2018-06-25 16:50:52 -07002524 <activity android:name=".biometrics.fingerprint.FingerprintEnrollFindSensor" android:exported="false"/>
2525 <activity android:name=".biometrics.fingerprint.FingerprintEnrollEnrolling" android:exported="false"/>
2526 <activity android:name=".biometrics.fingerprint.FingerprintEnrollFinish" android:exported="false"/>
Joe Bolingera8808f72021-06-10 13:36:38 -07002527 <activity android:name=".biometrics.fingerprint.FingerprintEnrollParentalConsent" android:exported="false"/>
Kevin Chyn871e55f2018-06-25 16:50:52 -07002528 <activity android:name=".biometrics.fingerprint.FingerprintEnrollIntroduction"
Kevin Chyn42ae10e2017-10-13 16:34:05 -07002529 android:exported="true"
2530 android:theme="@style/GlifTheme.Light">
2531 <intent-filter>
2532 <action android:name="android.settings.FINGERPRINT_ENROLL" />
Han Xub7d10772022-08-15 19:19:55 +08002533 <category android:name="android.intent.category.BROWSABLE" />
Kevin Chyn42ae10e2017-10-13 16:34:05 -07002534 <category android:name="android.intent.category.DEFAULT" />
2535 </intent-filter>
2536 </activity>
Maurice Lam8d1f9c92015-07-09 16:38:37 -07002537
Milton Wub9b8b8a2022-09-14 14:26:05 +08002538 <activity android:name=".biometrics2.ui.view.FingerprintEnrollmentActivity"
2539 android:exported="true"
Milton Wubc2dbee2023-05-24 16:23:55 +08002540 android:theme="@style/GlifTheme.Light" />
2541
2542 <activity android:name=".biometrics2.ui.view.FingerprintEnrollmentActivity$InternalActivity"
2543 android:exported="false"
2544 android:theme="@style/GlifTheme.Light"
2545 android:taskAffinity="com.android.settings.root" />
2546
2547 <activity android:name=".biometrics2.ui.view.FingerprintEnrollmentActivity$SetupActivity"
2548 android:exported="true"
Milton Wub9b8b8a2022-09-14 14:26:05 +08002549 android:permission="android.permission.MANAGE_FINGERPRINT"
Milton Wubc2dbee2023-05-24 16:23:55 +08002550 android:theme="@style/GlifTheme.Light" />
Milton Wub9b8b8a2022-09-14 14:26:05 +08002551
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002552 <activity android:name=".biometrics.fingerprint.FingerprintEnrollIntroductionInternal"
2553 android:exported="false"
2554 android:theme="@style/GlifTheme.Light"
2555 android:taskAffinity="com.android.settings.root" />
2556
Kevin Chyn871e55f2018-06-25 16:50:52 -07002557 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFindSensor" android:exported="false"/>
2558 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollEnrolling" android:exported="false"/>
2559 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFinish" android:exported="false"/>
2560 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollIntroduction"
Maurice Lame1eaed02015-07-08 16:59:59 -07002561 android:exported="true"
Maurice Lam8d1f9c92015-07-09 16:38:37 -07002562 android:permission="android.permission.MANAGE_FINGERPRINT"
Maurice Lame0e81b62017-04-05 12:10:37 -07002563 android:theme="@style/GlifTheme.Light">
Maurice Lame1eaed02015-07-08 16:59:59 -07002564 <intent-filter>
2565 <action android:name="android.settings.FINGERPRINT_SETUP" />
2566 <category android:name="android.intent.category.DEFAULT" />
2567 </intent-filter>
2568 </activity>
Jim Miller94d4bd92015-02-19 21:04:57 -08002569
Joshua McCloskey2e0244e2023-08-14 17:26:23 +00002570
2571 <activity android:name=".biometrics.fingerprint2.ui.enrollment.activity.FingerprintEnrollmentV2Activity"
Joshua McCloskey2407b402023-07-26 15:59:14 +00002572 android:exported="true"
2573 android:permission="android.permission.MANAGE_FINGERPRINT"
2574 android:theme="@style/GlifTheme.Light">
2575 <intent-filter>
2576 <action android:name="android.settings.FINGERPRINT_SETUP" />
2577 <category android:name="android.intent.category.DEFAULT" />
2578 </intent-filter>
2579 </activity>
2580
Kevin Chyn871e55f2018-06-25 16:50:52 -07002581 <activity android:name=".biometrics.fingerprint.FingerprintSuggestionActivity"
Maurice Lam34a181a2017-06-20 20:00:54 -07002582 android:exported="true"
2583 android:permission="android.permission.MANAGE_FINGERPRINT"
2584 android:icon="@drawable/ic_suggestion_fingerprint"
2585 android:theme="@style/GlifTheme.Light">
Maurice Lam34a181a2017-06-20 20:00:54 -07002586 <meta-data android:name="com.android.settings.require_feature"
2587 android:value="android.hardware.fingerprint" />
2588 <meta-data android:name="com.android.settings.title"
2589 android:resource="@string/suggestion_additional_fingerprints" />
2590 <meta-data android:name="com.android.settings.summary"
2591 android:resource="@string/suggestion_additional_fingerprints_summary" />
Maurice Lam34a181a2017-06-20 20:00:54 -07002592 </activity>
2593
cnchend2159992019-03-22 19:48:04 +08002594 <activity-alias android:name=".SetupFingerprintSuggestionActivity"
2595 android:enabled="false"
2596 android:exported="true"
2597 android:targetActivity=".biometrics.fingerprint.FingerprintSuggestionActivity">
2598 <intent-filter>
2599 <action android:name="android.intent.action.MAIN" />
2600 <category android:name="com.android.settings.suggested.category.FINGERPRINT_ENROLL" />
2601 </intent-filter>
2602 <meta-data android:name="com.android.settings.require_feature"
2603 android:value="android.hardware.fingerprint" />
2604 <meta-data android:name="com.android.settings.title"
2605 android:resource="@string/suggestion_additional_fingerprints" />
2606 <meta-data android:name="com.android.settings.summary"
2607 android:resource="@string/suggestion_additional_fingerprints_summary" />
Cating Lin84e6a472019-04-24 09:25:55 +08002608 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
cnchend2159992019-03-22 19:48:04 +08002609 </activity-alias>
2610
yuanjiahsu06466b02023-01-13 08:47:49 +08002611 <activity android:name=".biometrics.activeunlock.ActiveUnlockRequireBiometricSetup" android:exported="false"/>
2612
Paul Lawrence20444042014-07-07 13:10:16 -07002613 <!-- Note this must not be exported since it returns the password in the intent -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002614 <activity android:name=".password.ConfirmLockPattern$InternalActivity"
Andres Morales02d54872015-04-14 11:33:45 -07002615 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002616 android:theme="@style/GlifTheme.Light"/>
Paul Lawrence20444042014-07-07 13:10:16 -07002617
2618 <!-- Note this must not be exported since it returns the password in the intent -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002619 <activity android:name=".password.ConfirmLockPassword$InternalActivity"
Paul Lawrence20444042014-07-07 13:10:16 -07002620 android:exported="false"
Xiyuan Xia4a8edaf2015-05-20 14:26:15 -07002621 android:windowSoftInputMode="adjustResize"
Maurice Lame0e81b62017-04-05 12:10:37 -07002622 android:theme="@style/GlifTheme.Light"/>
Paul Lawrence20444042014-07-07 13:10:16 -07002623
Maurice Lam2eb170c2017-04-28 16:18:47 -07002624 <activity android:name=".password.SetupChooseLockGeneric"
Maurice Lame0e81b62017-04-05 12:10:37 -07002625 android:theme="@style/GlifTheme.Light"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002626 android:exported="true"
Lucky Zhang36ec2742014-12-05 18:20:27 -08002627 android:label="@string/lock_settings_picker_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002628 <intent-filter android:priority="1">
Maurice Lam52c75ba2014-11-25 14:06:38 -08002629 <action android:name="com.android.settings.SETUP_LOCK_SCREEN" />
2630 <category android:name="android.intent.category.DEFAULT" />
2631 </intent-filter>
2632 </activity>
2633
Doris Ling069d2932018-11-13 14:54:26 -08002634 <activity android:name=".password.SetupChooseLockGeneric$InternalActivity"
Doris Ling069d2932018-11-13 14:54:26 -08002635 android:exported="false"
2636 android:excludeFromRecents="true" />
2637
Maurice Lam2eb170c2017-04-28 16:18:47 -07002638 <activity android:name=".password.ChooseLockGeneric"
Steven Rossb7a9e952011-10-03 10:06:44 -04002639 android:label="@string/lockpassword_choose_lock_generic_header"
Steven Ng4fdcec72016-09-26 22:13:08 +01002640 android:excludeFromRecents="true"
2641 android:exported="false" />
2642
2643 <activity android:name=".password.SetNewPasswordActivity"
2644 android:theme="@android:style/Theme.NoDisplay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002645 android:exported="true"
Steven Rossb7a9e952011-10-03 10:06:44 -04002646 android:excludeFromRecents="true" >
Dianne Hackborn0702e872015-02-20 12:48:32 -08002647 <intent-filter android:priority="1">
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002648 <action android:name="android.app.action.SET_NEW_PASSWORD" />
Benjamin Franzae07b502016-01-08 17:16:19 +00002649 <action android:name="android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD" />
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002650 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002651 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002652 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2653 android:value="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002654 </activity>
2655
Fan Zhang31f699c2017-09-28 17:17:44 -07002656 <activity android:name=".password.ScreenLockSuggestionActivity"
Joe Bolinger8d508282022-03-24 00:39:20 +00002657 android:exported="false"
Mill Chen71958002019-01-23 10:44:39 +08002658 android:icon="@drawable/ic_suggestion_security">
Udam Saini7ad4a172016-01-25 11:22:33 -08002659 <intent-filter android:priority="1">
2660 <action android:name="android.intent.action.MAIN" />
Raff Tsai7c834632019-03-22 12:00:00 +08002661 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002662 </intent-filter>
Raff Tsai7c834632019-03-22 12:00:00 +08002663 <meta-data android:name="com.android.settings.dismiss" android:value="14" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002664 <meta-data android:name="com.android.settings.title"
2665 android:resource="@string/suggested_lock_settings_title" />
2666 <meta-data android:name="com.android.settings.summary"
2667 android:resource="@string/suggested_lock_settings_summary" />
Maurice Lam992fa862017-06-09 16:14:36 -07002668 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Saini62a72802016-01-28 11:09:29 -08002669 </activity>
Udam Saini7ad4a172016-01-25 11:22:33 -08002670
Kevin Chyn871e55f2018-06-25 16:50:52 -07002671 <activity android:name=".biometrics.fingerprint.FingerprintEnrollSuggestionActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002672 android:exported="true"
Udam Sainiaafbba12016-02-02 10:33:40 -08002673 android:icon="@drawable/ic_suggestion_fingerprint">
Udam Saini7ad4a172016-01-25 11:22:33 -08002674 <intent-filter android:priority="2">
2675 <action android:name="android.intent.action.MAIN" />
Fan Zhangaf91c1f2017-06-03 15:24:11 -07002676 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002677 </intent-filter>
Raff Tsai165708d2019-03-21 15:46:48 +08002678 <meta-data android:name="com.android.settings.dismiss" android:value="14" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002679 <meta-data android:name="com.android.settings.require_feature"
2680 android:value="android.hardware.fingerprint" />
2681 <meta-data android:name="com.android.settings.title"
TreeHugger Robota4e3c142016-07-12 21:42:03 +00002682 android:resource="@string/suggested_fingerprint_lock_settings_title" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002683 <meta-data android:name="com.android.settings.summary"
Udam Sainiaafbba12016-02-02 10:33:40 -08002684 android:resource="@string/suggested_fingerprint_lock_settings_summary" />
Doris Lingea85c0a2018-04-30 14:08:55 -07002685 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Saini62a72802016-01-28 11:09:29 -08002686 </activity>
Udam Saini7ad4a172016-01-25 11:22:33 -08002687
Maurice Lam2eb170c2017-04-28 16:18:47 -07002688 <activity android:name=".password.ChooseLockGeneric$InternalActivity"
2689 android:exported="false"
Amith Yamasani66026772013-09-25 14:05:33 -07002690 android:label="@string/lockpassword_choose_lock_generic_header"
Maurice Lam2eb170c2017-04-28 16:18:47 -07002691 android:excludeFromRecents="true" />
Amith Yamasani66026772013-09-25 14:05:33 -07002692
Maurice Lam2eb170c2017-04-28 16:18:47 -07002693 <activity android:name=".password.SetupChooseLockPattern"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002694 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002695 android:theme="@style/GlifTheme.Light" />
Maurice Lam6b19fa92014-11-25 19:25:56 -08002696
Maurice Lam2eb170c2017-04-28 16:18:47 -07002697 <activity android:name=".password.ChooseLockPattern"
Maurice Lamd189ac52016-06-15 13:39:34 -07002698 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002699 android:theme="@style/GlifTheme.Light" />
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002700
Maurice Lam2eb170c2017-04-28 16:18:47 -07002701 <activity android:name=".password.SetupChooseLockPassword"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002702 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002703 android:theme="@style/GlifTheme.Light"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002704 android:windowSoftInputMode="stateVisible|adjustResize" />
2705
Maurice Lam2eb170c2017-04-28 16:18:47 -07002706 <activity android:name=".password.ChooseLockPassword"
Maurice Lamd189ac52016-06-15 13:39:34 -07002707 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002708 android:theme="@style/GlifTheme.Light"
Jim Miller165bf2f2011-01-26 16:10:26 -08002709 android:windowSoftInputMode="stateVisible|adjustResize"/>
Jim Miller00d24762009-12-22 19:04:57 -08002710
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002711 <activity
2712 android:name=".Settings$StorageDashboardActivity"
2713 android:label="@string/storage_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002714 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002715 android:icon="@drawable/ic_homepage_storage">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002716 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002717 <action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" />
2718 <action android:name="android.settings.MEMORY_CARD_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002719 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002720 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002721 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07002722 <intent-filter android:priority="50">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002723 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -07002724 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002725 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002726 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Arc Wangfadbe5b2021-03-19 17:58:34 +08002727 android:value="com.android.settings.deviceinfo.StorageDashboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002728 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2729 android:value="@string/menu_key_storage"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002730 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2731 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002732 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002733
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002734 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002735 android:name="Settings$PublicVolumeSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002736 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002737 android:label="@string/storage_settings_title">
Jeff Sharkey42833b22015-04-11 21:27:33 -07002738 <intent-filter>
2739 <action android:name="android.provider.action.DOCUMENT_ROOT_SETTINGS" />
2740 <category android:name="android.intent.category.DEFAULT" />
2741 <data
2742 android:scheme="content"
2743 android:host="com.android.externalstorage.documents"
2744 android:mimeType="vnd.android.document/root" />
2745 </intent-filter>
2746 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2747 android:value="com.android.settings.deviceinfo.PublicVolumeSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002748 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2749 android:value="@string/menu_key_storage"/>
Jeff Sharkey42833b22015-04-11 21:27:33 -07002750 </activity>
Vasu Nori21809742011-01-25 13:39:16 -08002751
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002752 <activity
2753 android:name="Settings$PrivateVolumeForgetActivity"
2754 android:label="@string/storage_settings_title"
2755 android:exported="true"
2756 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS">
Jeff Sharkeya16257d2015-04-28 13:41:01 -07002757 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2758 android:value="com.android.settings.deviceinfo.PrivateVolumeForget" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002759 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2760 android:value="@string/menu_key_storage"/>
Jeff Sharkeya16257d2015-04-28 13:41:01 -07002761 </activity>
2762
Jeff Sharkey94635992015-04-13 14:15:26 -07002763 <!-- Exported for SystemUI to launch into -->
2764 <activity android:name=".deviceinfo.StorageWizardInit"
sayakiitg9b432d52022-01-12 10:45:33 +00002765 android:theme="@style/GlifTheme.Light"
Jeff Sharkey2949a4a2015-04-14 16:44:34 -07002766 android:exported="true"
2767 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002768 <activity android:name=".deviceinfo.StorageWizardFormatProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002769 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002770 android:exported="false"/>
Jeff Sharkey2af67a92018-04-01 18:25:54 -06002771 <activity android:name=".deviceinfo.StorageWizardFormatSlow"
sayakiitg9b432d52022-01-12 10:45:33 +00002772 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002773 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002774 <activity android:name=".deviceinfo.StorageWizardMigrateConfirm"
sayakiitg9b432d52022-01-12 10:45:33 +00002775 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002776 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002777 <activity android:name=".deviceinfo.StorageWizardMigrateProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002778 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002779 android:exported="true"
2780 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002781 <activity android:name=".deviceinfo.StorageWizardReady"
sayakiitg9b432d52022-01-12 10:45:33 +00002782 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002783 android:exported="true"
2784 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002785
2786 <activity android:name=".deviceinfo.StorageWizardMoveConfirm"
sayakiitg9b432d52022-01-12 10:45:33 +00002787 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002788 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002789 <activity android:name=".deviceinfo.StorageWizardMoveProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002790 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002791 android:exported="true"
2792 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002793
Jeff Sharkey2949a4a2015-04-14 16:44:34 -07002794 <!-- Exported for SystemUI to trigger -->
2795 <receiver android:name=".deviceinfo.StorageUnmountReceiver"
2796 android:exported="true"
2797 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
2798
Jason Monkb7e43802016-06-06 16:01:58 -04002799 <activity android:name="Settings$ApnEditorActivity"
Junda Liu76ad6352017-02-03 16:39:23 -08002800 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002801 android:exported="true"
Amith Yamasani34bd7e62013-06-07 10:19:55 -07002802 android:label="@string/apn_edit">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002803 <intent-filter>
2804 <action android:name="android.intent.action.VIEW" />
2805 <action android:name="android.intent.action.EDIT" />
2806 <category android:name="android.intent.category.DEFAULT" />
2807 <data android:mimeType="vnd.android.cursor.item/telephony-carrier" />
2808 </intent-filter>
2809
2810 <intent-filter>
2811 <action android:name="android.intent.action.INSERT" />
2812 <category android:name="android.intent.category.DEFAULT" />
2813 <data android:mimeType="vnd.android.cursor.dir/telephony-carrier" />
2814 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -04002815 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
tom hsu2fd7c9f2020-09-30 21:46:27 +08002816 android:value="com.android.settings.network.apn.ApnEditor" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002817 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2818 android:value="@string/menu_key_network"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002819 </activity>
2820
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002821 <activity
2822 android:name="Settings$DevelopmentSettingsDashboardActivity"
2823 android:label="@string/development_settings_title"
2824 android:icon="@drawable/ic_settings_development"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002825 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002826 android:enabled="false">
Fan Zhang4c26da92017-09-08 15:29:54 -07002827 <intent-filter android:priority="1">
2828 <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2829 <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
Joshua Duong2972bfa2020-04-10 00:22:04 -07002830 <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
Fan Zhang4c26da92017-09-08 15:29:54 -07002831 <category android:name="android.intent.category.DEFAULT" />
2832 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07002833 <intent-filter>
Fan Zhang4c26da92017-09-08 15:29:54 -07002834 <action android:name="com.android.settings.action.SETTINGS" />
Aurélien Pomini649c5082023-02-10 14:56:57 +00002835 <action android:name="com.android.intent.action.SHOW_CONTRAST_DIALOG" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002836 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07002837 <meta-data android:name="com.android.settings.order" android:value="-40"/>
Fan Zhang4c26da92017-09-08 15:29:54 -07002838 <meta-data android:name="com.android.settings.category"
2839 android:value="com.android.settings.category.ia.system" />
2840 <meta-data android:name="com.android.settings.summary"
2841 android:resource="@string/summary_empty"/>
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08002842 <meta-data android:name="com.android.settings.icon"
2843 android:resource="@drawable/ic_settings_development" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002844 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2845 android:value="com.android.settings.development.DevelopmentSettingsDashboardFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002846 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2847 android:value="@string/menu_key_system"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08002848 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2849 android:value="true" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002850 </activity>
2851
Fan Zhang6359a192017-05-11 16:04:09 -07002852 <!-- The opposite of DevelopmentSettingsActivity, it's no-op and only enabled when the real
2853 activity is disabled to be CTS compliant. -->
2854 <activity
2855 android:name=".development.DevelopmentSettingsDisabledActivity"
2856 android:icon="@drawable/ic_settings_development"
2857 android:label="@string/development_settings_title"
Fan Zhang7373ec02018-08-14 13:25:47 -07002858 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002859 android:exported="true"
Fan Zhang7373ec02018-08-14 13:25:47 -07002860 android:theme="@style/Transparent">
Fan Zhang6359a192017-05-11 16:04:09 -07002861 <intent-filter android:priority="-1">
2862 <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2863 <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2864 <category android:name="android.intent.category.DEFAULT" />
2865 </intent-filter>
2866 </activity>
2867
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002868 <activity
2869 android:name="Settings$PrintSettingsActivity"
2870 android:label="@string/print_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002871 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002872 android:icon="@drawable/ic_settings_print">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002873 <intent-filter android:priority="1">
2874 <action android:name="android.settings.ACTION_PRINT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002875 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002876 <category android:name="android.intent.category.DEFAULT" />
2877 </intent-filter>
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002878 <intent-filter>
2879 <action android:name="android.intent.action.MAIN" />
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002880 <category android:name="android.intent.category.DEFAULT" />
2881 <category android:name="android.intent.category.VOICE_LAUNCH" />
2882 </intent-filter>
2883 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2884 android:value="com.android.settings.print.PrintSettingsFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002885 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2886 android:value="@string/menu_key_connected_devices"/>
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002887 </activity>
2888
Svetoslavd9f156d2013-10-09 21:59:04 -07002889 <activity android:name="Settings$PrintJobSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002890 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002891 android:label="@string/print_print_job">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002892 <intent-filter android:priority="1">
Svetoslavd9f156d2013-10-09 21:59:04 -07002893 <action android:name="android.settings.ACTION_PRINT_SETTINGS" />
2894 <category android:name="android.intent.category.DEFAULT" />
2895 <data android:scheme="printjob" android:pathPattern="*" />
2896 </intent-filter>
2897 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2898 android:value="com.android.settings.print.PrintJobSettingsFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002899 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2900 android:value="@string/menu_key_connected_devices"/>
Svetoslavd9f156d2013-10-09 21:59:04 -07002901 </activity>
2902
Fan Zhang2907f862017-03-17 15:05:14 -07002903 <activity android:name=".development.AppPicker"
Edgar Wang3c03f0a2020-05-05 06:19:14 +08002904 android:label="@string/select_application" />
Dianne Hackborn9244df42012-02-14 13:25:41 -08002905
Joshua Duongfd009222021-07-14 16:05:57 -07002906 <activity android:name=".development.AdbQrCodeActivity" />
2907
Howard Chen5d7f3e62022-09-29 16:33:34 +08002908 <activity android:name="com.android.settings.development.DSULoader"
Howard Chend5f3a0c2019-08-29 17:31:05 +08002909 android:label="Select DSU Package"
Howard Chen5d7f3e62022-09-29 16:33:34 +08002910 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog"
2911 android:exported="true" >
2912 <intent-filter>
2913 <action android:name="android.settings.development.START_DSU_LOADER"/>
2914 <category android:name="android.intent.category.DEFAULT"/>
2915 </intent-filter>
2916 </activity>
Howard Chen60acb512019-12-02 15:34:58 +08002917 <activity android:name=".development.DSUTermsOfServiceActivity"
2918 android:label="Terms of Service"
2919 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" />
Howard Chend5f3a0c2019-08-29 17:31:05 +08002920
Varun Shah7efe9312020-03-26 23:02:50 -07002921 <activity android:name=".development.storage.BlobInfoListView"
2922 android:label="@string/shared_data_title" />
2923 <activity android:name=".development.storage.LeaseInfoListView"
2924 android:label="@string/accessor_info_title" />
2925
Gustav Sennton5b596282017-02-03 16:19:02 +00002926 <activity android:name="Settings$WebViewAppPickerActivity"
Jason Chiuae5327d2021-11-04 17:09:53 +08002927 android:label="@string/select_webview_provider_dialog_title">
2928 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2929 android:value="@string/menu_key_system"/>
2930 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002931
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002932 <activity android:name="Settings$BugReportHandlerPickerActivity"
2933 android:label="@string/bug_report_handler_title"
2934 android:exported="true"
2935 android:excludeFromRecents="true">
2936 <intent-filter>
2937 <action android:name="android.settings.BUGREPORT_HANDLER_SETTINGS" />
2938 <category android:name="android.intent.category.DEFAULT" />
2939 </intent-filter>
Paul Chang6950a802020-04-22 20:59:59 +08002940 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2941 android:value="true" />
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002942 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2943 android:value="com.android.settings.bugreporthandler.BugReportHandlerPicker" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002944 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2945 android:value="@string/menu_key_system"/>
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002946 </activity>
2947
Jaikumar Ganesh3a76bca2009-07-16 18:41:58 -07002948 <activity android:name=".bluetooth.BluetoothPairingDialog"
Chen Chen38101d52021-10-05 17:46:02 -07002949 android:permission="android.permission.BLUETOOTH_PRIVILEGED"
Michael Chan684736a2009-09-01 18:51:04 -07002950 android:excludeFromRecents="true"
Antony Sargent4d7df062017-07-12 17:29:10 -07002951 android:windowSoftInputMode="stateVisible|adjustResize"
jackqdyulei27f62fd2019-02-22 15:31:35 -08002952 android:theme="@style/Theme.AlertDialog"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002953 android:exported="true"
jackqdyulei27f62fd2019-02-22 15:31:35 -08002954 android:taskAffinity=".bluetooth.BluetoothPairingDialog">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002955 <intent-filter android:priority="1">
Nick Pelly5ddbd942009-09-11 11:41:59 -07002956 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002957 <category android:name="android.intent.category.DEFAULT" />
2958 </intent-filter>
2959 </activity>
2960
Michael Chane1089ad2009-09-26 06:16:17 -07002961 <activity android:name=".bluetooth.RequestPermissionActivity"
Michael Chane1089ad2009-09-26 06:16:17 -07002962 android:excludeFromRecents="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06002963 android:permission="android.permission.BLUETOOTH_CONNECT"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002964 android:exported="true"
Fan Zhanga122be12018-07-16 16:28:37 -07002965 android:theme="@style/Theme.BluetoothPermission">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002966 <intent-filter android:priority="1">
Michael Chane1089ad2009-09-26 06:16:17 -07002967 <action android:name="android.bluetooth.adapter.action.REQUEST_DISCOVERABLE" />
2968 <action android:name="android.bluetooth.adapter.action.REQUEST_ENABLE" />
Svetoslav Ganovb06766f2016-07-22 20:08:41 -07002969 <action android:name="android.bluetooth.adapter.action.REQUEST_DISABLE" />
Michael Chane1089ad2009-09-26 06:16:17 -07002970 <category android:name="android.intent.category.DEFAULT" />
2971 </intent-filter>
2972 </activity>
2973
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002974 <activity android:name=".wifi.WifiScanModeActivity"
2975 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002976 android:exported="true"
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002977 android:theme="@style/Transparent">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002978 <intent-filter android:priority="1">
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002979 <action android:name="android.net.wifi.action.REQUEST_SCAN_ALWAYS_AVAILABLE" />
2980 <category android:name="android.intent.category.DEFAULT" />
2981 </intent-filter>
2982 </activity>
2983
Jerry Zhangd18d6f12018-01-11 16:47:14 -08002984 <activity android:name=".Settings$UsbDetailsActivity"
2985 android:excludeFromRecents="true"
2986 android:permission="android.permission.MANAGE_USB"
2987 android:exported="true">
2988 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2989 android:value="com.android.settings.connecteddevice.usb.UsbDetailsFragment"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08002990 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2991 android:value="@string/menu_key_connected_devices"/>
Jerry Zhangd18d6f12018-01-11 16:47:14 -08002992 </activity>
2993
Michal Karpinski707f42f2016-02-25 17:29:43 +00002994 <activity android:name=".RemoteBugreportActivity"
2995 android:excludeFromRecents="true"
2996 android:exported="true"
2997 android:permission="android.permission.DUMP"
tmfang5ade2f12018-07-30 13:49:43 +08002998 android:theme="@style/Theme.AlertDialog">
Michal Karpinski707f42f2016-02-25 17:29:43 +00002999 <intent-filter>
3000 <action android:name="android.settings.SHOW_REMOTE_BUGREPORT_DIALOG" />
3001 <category android:name="android.intent.category.DEFAULT" />
3002 </intent-filter>
3003 </activity>
3004
Marie Janssend06d83c2017-02-14 18:49:17 -08003005 <service android:name=".bluetooth.BluetoothPairingService" />
3006
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003007 <receiver android:name=".bluetooth.BluetoothPairingRequest"
3008 android:exported="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003009 <intent-filter>
Nick Pelly5ddbd942009-09-11 11:41:59 -07003010 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
Alice Kuoebea73e2021-10-13 18:43:47 +08003011 <action android:name="android.bluetooth.action.CSIS_SET_MEMBER_AVAILABLE"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003012 </intent-filter>
3013 </receiver>
3014
Jaikumar Ganeshe0b01ad2011-09-07 17:19:19 -07003015 <receiver android:name=".bluetooth.BluetoothPermissionRequest"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003016 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06003017 android:permission="android.permission.BLUETOOTH_CONNECT">
Matthew Xiedbed1202011-06-27 18:21:25 -07003018 <intent-filter>
3019 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" />
3020 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" />
3021 </intent-filter>
3022 </receiver>
3023
3024 <activity android:name=".bluetooth.BluetoothPermissionActivity"
3025 android:label="@string/bluetooth_connection_permission_request"
3026 android:excludeFromRecents="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06003027 android:permission="android.permission.BLUETOOTH_CONNECT"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003028 android:exported="true"
Hugh Chen07a46752022-08-11 09:37:23 +00003029 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003030 <intent-filter android:priority="1">
Matthew Xiedbed1202011-06-27 18:21:25 -07003031 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" />
3032 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" />
3033 <category android:name="android.intent.category.DEFAULT" />
3034 </intent-filter>
3035 </activity>
3036
Joe Onoratode5603722009-03-24 17:49:03 -07003037 <activity android:name="ActivityPicker"
3038 android:label="@string/activity_picker_label"
Arc Wang5a298fb2020-06-30 14:14:02 +08003039 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003040 android:exported="true"
Dianne Hackbornec549972009-09-23 22:24:22 -07003041 android:finishOnCloseSystemDialogs="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003042 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003043 <action android:name="android.intent.action.PICK_ACTIVITY" />
3044 <category android:name="android.intent.category.DEFAULT" />
3045 </intent-filter>
3046 </activity>
3047
Jeff Hamilton3d670de2011-09-21 16:44:36 -05003048 <!-- NFC settings -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003049 <activity
3050 android:name="Settings$AndroidBeamSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003051 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003052 android:label="@string/android_beam_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003053 <intent-filter android:priority="1">
3054 <action android:name="android.settings.NFCSHARING_SETTINGS" />
3055 <category android:name="android.intent.category.DEFAULT" />
3056 </intent-filter>
Jeff Hamilton3d670de2011-09-21 16:44:36 -05003057 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Nick Pellye0eedf72011-10-31 14:11:29 -07003058 android:value="com.android.settings.nfc.AndroidBeam" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003059 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3060 android:value="@string/menu_key_connected_devices"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003061 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3062 android:value="true" />
Jeff Hamilton3d670de2011-09-21 16:44:36 -05003063 </activity>
3064
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003065 <activity
3066 android:name="Settings$WifiDisplaySettingsActivity"
3067 android:label="@string/wifi_display_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003068 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003069 android:icon="@drawable/ic_cast_24dp">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003070 <intent-filter android:priority="1">
Jeff Brownff0e81e2014-08-19 17:47:54 -07003071 <action android:name="android.settings.CAST_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003072 <category android:name="android.intent.category.BROWSABLE" />
Jeff Brown9e143f52012-09-19 20:46:07 -07003073 <category android:name="android.intent.category.DEFAULT" />
3074 </intent-filter>
3075 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3076 android:value="com.android.settings.wfd.WifiDisplaySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003077 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3078 android:value="@string/menu_key_connected_devices"/>
Jeff Brown9e143f52012-09-19 20:46:07 -07003079 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003080
Jason Monkb7e43802016-06-06 16:01:58 -04003081 <activity android:name="Settings$TestingSettingsActivity" android:label="@string/testing">
Jason Monkb7e43802016-06-06 16:01:58 -04003082 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3083 android:value="com.android.settings.TestingSettings" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003084 </activity>
3085
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003086 <receiver android:name=".TestingSettingsBroadcastReceiver"
3087 android:exported="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003088 <intent-filter>
Grace Jia84da1e82020-02-14 15:53:28 -08003089 <action android:name="android.telephony.action.SECRET_CODE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003090 <data android:scheme="android_secret_code" android:host="4636" />
3091 </intent-filter>
3092 </receiver>
3093
The Android Open Source Project80a7a1d2009-03-11 12:11:59 -07003094 <!-- Standard picker for widgets -->
Joe Onoratode5603722009-03-24 17:49:03 -07003095 <activity android:name="AppWidgetPickActivity"
3096 android:label="@string/widget_picker_title"
Arc Wang5a298fb2020-06-30 14:14:02 +08003097 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003098 android:exported="true"
Joe Onorato9bcc6912011-01-10 12:55:57 -08003099 android:finishOnCloseSystemDialogs="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003100 <intent-filter android:priority="1">
The Android Open Source Project80a7a1d2009-03-11 12:11:59 -07003101 <action android:name="android.appwidget.action.APPWIDGET_PICK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003102 <category android:name="android.intent.category.DEFAULT" />
3103 </intent-filter>
3104 </activity>
3105
Michael Jurkac9029d92012-04-20 01:47:44 -07003106 <activity android:name="AllowBindAppWidgetActivity"
Arc Wang5a298fb2020-06-30 14:14:02 +08003107 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Michael Jurkac9029d92012-04-20 01:47:44 -07003108 android:finishOnCloseSystemDialogs="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003109 android:exported="true"
Michael Jurkac9029d92012-04-20 01:47:44 -07003110 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003111 <intent-filter android:priority="1">
Michael Jurkac9029d92012-04-20 01:47:44 -07003112 <action android:name="android.appwidget.action.APPWIDGET_BIND" />
3113 <category android:name="android.intent.category.DEFAULT" />
3114 </intent-filter>
3115 </activity>
3116
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003117 <activity
3118 android:name="Settings$PowerUsageSummaryActivity"
3119 android:label="@string/power_usage_summary_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003120 android:exported="true"
ykhung0c3957d2023-03-09 14:28:31 +08003121 android:icon="@drawable/ic_homepage_battery"
3122 android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize">
jackqdyuleib96ccba2018-01-23 10:29:13 -08003123 <intent-filter android:priority="1">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003124 <action android:name="android.intent.action.POWER_USAGE_SUMMARY" />
3125 <category android:name="android.intent.category.DEFAULT" />
3126 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003127 <intent-filter android:priority="51">
jackqdyuleib96ccba2018-01-23 10:29:13 -08003128 <action android:name="android.intent.action.MAIN" />
jackqdyuleib96ccba2018-01-23 10:29:13 -08003129 <category android:name="com.android.settings.SHORTCUT" />
3130 </intent-filter>
Dianne Hackborn59a48602010-11-10 23:34:52 -08003131 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
xuezaiyueac731842022-06-08 21:53:23 +08003132 android:value="com.android.settings.fuelgauge.batteryusage.PowerUsageSummary" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003133 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3134 android:value="@string/menu_key_battery"/>
Dianne Hackborncbaf6ce2010-07-23 00:23:21 -07003135 </activity>
3136
Kuan Wang0a0ba912022-10-13 18:07:54 +08003137 <provider
3138 android:name=".fuelgauge.batteryusage.BatteryUsageContentProvider"
3139 android:enabled="true"
3140 android:exported="true"
3141 android:authorities="${applicationId}.battery.usage.provider"
3142 android:permission="com.android.settings.BATTERY_DATA"/>
3143
Kuan Wangbc4548b2022-12-01 17:31:29 +08003144 <provider
3145 android:name=".fuelgauge.batteryusage.bugreport.BugReportContentProvider"
3146 android:exported="false"
3147 android:authorities="${applicationId}.battery.usage.bugreport"/>
3148
Kuan Wangc28daec2023-01-16 18:40:47 +08003149 <receiver android:name="com.android.settings.fuelgauge.batteryusage.BatteryUsageBroadcastReceiver"
Kuan Wangfb136dd2022-10-18 15:03:39 +08003150 android:exported="true">
3151 <intent-filter>
Kuan Wang45be6ba2022-10-20 17:07:01 +08003152 <action android:name="android.intent.action.BATTERY_LEVEL_CHANGED"/>
Kuan Wangfb136dd2022-10-18 15:03:39 +08003153 <action android:name="com.android.settings.battery.action.CLEAR_BATTERY_CACHE_DATA"/>
Zaiyue Xueff11b8e2023-02-27 16:29:04 +08003154 <action android:name="com.android.settings.battery.action.ACTION_BATTERY_PLUGGING"/>
Kuan Wangc28daec2023-01-16 18:40:47 +08003155 <action android:name="com.android.settings.battery.action.ACTION_BATTERY_UNPLUGGING"/>
Kuan Wangfb136dd2022-10-18 15:03:39 +08003156 </intent-filter>
3157 </receiver>
3158
Kuan Wangdf05a132022-10-20 11:48:48 +08003159 <receiver
3160 android:name=".fuelgauge.batteryusage.BootBroadcastReceiver"
3161 android:exported="true">
3162 <intent-filter>
3163 <action android:name="android.intent.action.BOOT_COMPLETED"/>
Kuan Wangdf05a132022-10-20 11:48:48 +08003164 <action android:name="com.google.android.setupwizard.SETUP_WIZARD_FINISHED"/>
3165 <action android:name="com.android.settings.battery.action.PERIODIC_JOB_RECHECK"/>
3166 </intent-filter>
3167 </receiver>
3168
3169 <receiver
ykhung4c0de262022-11-10 15:38:22 +08003170 android:name=".fuelgauge.BatterySettingsMigrateChecker"
3171 android:exported="true">
3172 <intent-filter>
3173 <action android:name="android.intent.action.BOOT_COMPLETED"/>
3174 </intent-filter>
3175 </receiver>
3176
3177 <receiver
Kuan Wangdf05a132022-10-20 11:48:48 +08003178 android:name=".fuelgauge.batteryusage.PeriodicJobReceiver"
3179 android:exported="false">
3180 <intent-filter>
3181 <action android:name="com.android.settings.battery.action.PERIODIC_JOB_UPDATE"/>
3182 </intent-filter>
3183 </receiver>
3184
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003185 <activity
3186 android:name="Settings$BatterySaverSettingsActivity"
3187 android:label="@string/battery_saver"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003188 android:exported="true"
ykhungeadeee52022-05-18 12:18:15 +08003189 android:icon="@drawable/ic_homepage_battery">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003190 <intent-filter android:priority="1">
3191 <action android:name="android.settings.BATTERY_SAVER_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003192 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003193 <category android:name="android.intent.category.DEFAULT" />
3194 </intent-filter>
John Spurlockc7f8e8c2014-06-04 19:11:22 -04003195 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang747f0e12018-03-01 09:49:34 -08003196 android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003197 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3198 android:value="@string/menu_key_battery"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003199 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3200 android:value="true" />
John Spurlockc7f8e8c2014-06-04 19:11:22 -04003201 </activity>
3202
P.Y. Laligand1f403d52015-04-14 16:14:16 -07003203 <activity android:name=".fuelgauge.BatterySaverModeVoiceActivity"
Barnaby Jamesc55ea152015-04-13 14:33:53 -07003204 android:label="@string/power_usage_summary_title"
ykhungeadeee52022-05-18 12:18:15 +08003205 android:icon="@drawable/ic_homepage_battery"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07003206 android:theme="@*android:style/Theme.DeviceDefault.Light.Voice"
Barnaby Jamesc55ea152015-04-13 14:33:53 -07003207 android:exported="true">
3208 <intent-filter>
3209 <action android:name="android.settings.VOICE_CONTROL_BATTERY_SAVER_MODE" />
3210 <category android:name="android.intent.category.DEFAULT" />
3211 <category android:name="android.intent.category.VOICE" />
3212 </intent-filter>
3213 </activity>
3214
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003215 <activity
3216 android:name="Settings$AccountSyncSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003217 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003218 android:label="@string/account_sync_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003219 <intent-filter android:priority="1">
3220 <action android:name="android.settings.ACCOUNT_SYNC_SETTINGS" />
3221 <category android:name="android.intent.category.DEFAULT" />
3222 </intent-filter>
Amith Yamasani43c69782010-12-01 09:04:36 -08003223 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3224 android:value="com.android.settings.accounts.AccountSyncSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003225 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3226 android:value="@string/menu_key_accounts"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003227 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3228 android:value="true" />
Amith Yamasani43c69782010-12-01 09:04:36 -08003229 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003230 <activity
3231 android:name="Settings$ManagedProfileSettingsActivity"
Ricky Waibf94d092017-02-01 15:26:29 +00003232 android:label="@string/managed_profile_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003233 android:exported="true"
Ricky Waibf94d092017-02-01 15:26:29 +00003234 android:permission="android.permission.MANAGE_USERS">
3235 <intent-filter android:priority="1">
3236 <action android:name="android.settings.MANAGED_PROFILE_SETTINGS" />
3237 <category android:name="android.intent.category.DEFAULT" />
3238 </intent-filter>
3239 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3240 android:value="com.android.settings.accounts.ManagedProfileSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003241 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3242 android:value="@string/menu_key_accounts"/>
Ricky Waibf94d092017-02-01 15:26:29 +00003243 </activity>
Amith Yamasani43c69782010-12-01 09:04:36 -08003244
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003245 <activity
3246 android:name="com.android.settings.accounts.AddAccountSettings"
Amith Yamasani7bb8f722011-06-02 18:05:40 -07003247 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003248 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003249 android:label="@string/header_add_an_account">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003250 <intent-filter android:priority="1">
3251 <action android:name="android.settings.ADD_ACCOUNT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003252 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003253 <category android:name="android.intent.category.DEFAULT" />
3254 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003255 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3256 android:value="true" />
Amith Yamasani43c69782010-12-01 09:04:36 -08003257 </activity>
3258
Jason Monkb7e43802016-06-06 16:01:58 -04003259 <activity android:name="Settings$ChooseAccountActivity"
Amith Yamasani43c69782010-12-01 09:04:36 -08003260 android:label="@string/header_add_an_account"
Fan Zhang92f1e942017-01-21 10:07:26 -08003261 android:configChanges="orientation|keyboardHidden|screenSize">
Jason Monkb7e43802016-06-06 16:01:58 -04003262 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Emily Chuangb279b1c2018-04-12 10:12:28 +08003263 android:value="com.android.settings.accounts.ChooseAccountFragment" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003264 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3265 android:value="@string/menu_key_accounts"/>
Jason Monkb7e43802016-06-06 16:01:58 -04003266 </activity>
Jim Miller165bf2f2011-01-26 16:10:26 -08003267
Jeff Sharkey9e9f7d12015-11-30 13:28:19 -07003268 <!-- Triggered when user-selected home app isn't encryption aware -->
3269 <activity android:name=".FallbackHome"
3270 android:excludeFromRecents="true"
Fan Zhang49534b72017-06-22 15:04:41 -07003271 android:label=""
Louis Chang397cdd62019-06-27 09:57:54 +08003272 android:taskAffinity="com.android.settings.FallbackHome"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003273 android:exported="true"
Adam Bookatzeb89d142022-02-24 16:45:28 -08003274 android:theme="@style/FallbackHome"
Tsung-Mao Fangf5062c22022-09-30 15:27:06 +08003275 android:permission="android.permission.DEVICE_POWER"
Adam Bookatzeb89d142022-02-24 16:45:28 -08003276 android:configChanges="keyboardHidden">
Xiaohui Chendbf3e152015-12-30 15:51:56 -08003277 <intent-filter android:priority="-1000">
Jeff Sharkey9e9f7d12015-11-30 13:28:19 -07003278 <action android:name="android.intent.action.MAIN" />
3279 <category android:name="android.intent.category.HOME" />
3280 <category android:name="android.intent.category.DEFAULT" />
3281 </intent-filter>
3282 </activity>
3283
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003284 <activity
3285 android:name="Settings$DataUsageSummaryActivity"
3286 android:label="@string/data_usage_summary_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003287 android:exported="true"
Bonian Chen86027472022-03-18 09:23:19 +08003288 android:icon="@drawable/ic_homepage_data_usage">
Rohan Shahff5bd332018-03-21 17:16:39 -07003289 <intent-filter android:priority="1">
3290 <action android:name="android.settings.DATA_USAGE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003291 <category android:name="android.intent.category.BROWSABLE" />
Rohan Shahff5bd332018-03-21 17:16:39 -07003292 <category android:name="android.intent.category.DEFAULT" />
3293 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003294 <intent-filter android:priority="3">
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003295 <action android:name="android.intent.action.MAIN" />
Amith Yamasani7836e4a2011-09-19 13:25:52 -07003296 <category android:name="com.android.settings.SHORTCUT" />
Jeff Sharkeydd6efe12011-06-15 10:31:41 -07003297 </intent-filter>
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003298 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangcd21cb82018-06-11 09:28:02 -07003299 android:value="com.android.settings.datausage.DataUsageSummary" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003300 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3301 android:value="@string/menu_key_network"/>
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003302 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003303 <activity
3304 android:name="Settings$MobileDataUsageListActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003305 android:exported="true"
Yanting Yang85713d02019-09-27 18:34:04 +08003306 android:label="@string/cellular_data_usage">
Malcolm Chen52584e92017-06-20 11:14:27 -07003307 <intent-filter android:priority="1">
3308 <action android:name="android.settings.MOBILE_DATA_USAGE" />
Malcolm Chen6fef2fff2017-07-13 17:59:58 -07003309 <category android:name="android.intent.category.DEFAULT" />
Malcolm Chen52584e92017-06-20 11:14:27 -07003310 </intent-filter>
3311 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Ling282a0d92018-11-30 16:20:32 -08003312 android:value="com.android.settings.datausage.DataUsageList" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003313 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3314 android:value="@string/menu_key_network"/>
Malcolm Chen52584e92017-06-20 11:14:27 -07003315 </activity>
3316
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003317 <activity
3318 android:name="Settings$DreamSettingsActivity"
3319 android:label="@string/screensaver_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003320 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003321 android:icon="@drawable/ic_settings_display">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003322 <intent-filter android:priority="1">
3323 <action android:name="android.settings.DREAM_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003324 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003325 <category android:name="android.intent.category.DEFAULT" />
3326 </intent-filter>
Daniel Sandler7dee75c2012-11-27 22:41:30 -05003327 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Evan Laird22315ad2017-07-18 16:37:42 -04003328 android:value="com.android.settings.dream.DreamSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003329 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3330 android:value="@string/menu_key_display"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003331 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3332 android:value="true" />
Daniel Sandler7dee75c2012-11-27 22:41:30 -05003333 </activity>
3334
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003335 <activity
Lucas Silva3b1c7392023-04-12 15:22:39 -04003336 android:name="Settings$CommunalSettingsActivity"
3337 android:label="@string/communal_settings_title"
3338 android:exported="true"
3339 android:icon="@drawable/ia_settings_communal">
3340 <intent-filter android:priority="1">
3341 <action android:name="android.settings.COMMUNAL_SETTINGS" />
3342 <category android:name="android.intent.category.BROWSABLE" />
3343 <category android:name="android.intent.category.DEFAULT" />
3344 </intent-filter>
3345 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3346 android:value="com.android.settings.communal.CommunalDashboardFragment" />
3347 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3348 android:value="@string/menu_key_communal"/>
3349 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3350 android:value="true" />
3351 </activity>
3352
3353 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003354 android:name="Settings$UserSettingsActivity"
3355 android:label="@string/user_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003356 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003357 android:icon="@drawable/ic_settings_multiuser">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003358 <intent-filter android:priority="1">
3359 <action android:name="android.settings.USER_SETTINGS" />
3360 <category android:name="android.intent.category.DEFAULT" />
3361 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07003362 <intent-filter>
Jason Monk4da79e02015-09-10 10:54:36 -04003363 <action android:name="com.android.settings.action.SETTINGS" />
3364 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07003365 <meta-data android:name="com.android.settings.order" android:value="-45"/>
Jason Monk4da79e02015-09-10 10:54:36 -04003366 <meta-data android:name="com.android.settings.category"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003367 android:value="com.android.settings.category.ia.system" />
Raff Tsai6db277e2019-10-02 16:43:23 +08003368 <meta-data android:name="com.android.settings.summary_uri"
3369 android:value="content://com.android.settings.dashboard.SummaryProvider/user" />
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08003370 <meta-data android:name="com.android.settings.icon"
3371 android:resource="@drawable/ic_settings_multiuser" />
Amith Yamasani233592b2013-03-01 17:05:23 -08003372 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003373 android:value="com.android.settings.users.UserSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003374 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3375 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003376 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003377 android:value="true" />
Amith Yamasani233592b2013-03-01 17:05:23 -08003378 </activity>
3379
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003380 <activity
3381 android:name="Settings$PaymentSettingsActivity"
3382 android:label="@string/nfc_payment_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003383 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003384 android:icon="@drawable/ic_settings_nfc_payment">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003385 <intent-filter android:priority="1">
3386 <action android:name="android.settings.NFC_PAYMENT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003387 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003388 <category android:name="android.intent.category.DEFAULT" />
3389 </intent-filter>
Martijn Coenen26515da2013-08-01 18:13:33 -07003390 <intent-filter>
3391 <action android:name="android.intent.action.MAIN" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003392 <category android:name="android.intent.category.DEFAULT" />
3393 </intent-filter>
3394 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3395 android:value="com.android.settings.nfc.PaymentSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003396 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3397 android:value="@string/menu_key_connected_devices"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003398 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3399 android:value="true" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003400 </activity>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003401
Martijn Coenen26515da2013-08-01 18:13:33 -07003402 <activity android:name=".nfc.PaymentDefaultDialog"
Martijn Coenenda6c0ba2013-09-05 21:07:23 -07003403 android:label="@string/nfc_payment_set_default_label"
Martijn Coenen26515da2013-08-01 18:13:33 -07003404 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003405 android:exported="true"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07003406 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003407 <intent-filter android:priority="1">
Martijn Coenena73aa322013-08-30 12:57:42 -07003408 <action android:name="android.nfc.cardemulation.action.ACTION_CHANGE_DEFAULT" />
3409 <category android:name="android.intent.category.DEFAULT" />
3410 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003411 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3412 android:value="true" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003413 </activity>
3414
Martijn Coenencbcc76e2015-06-05 21:28:17 +02003415 <activity android:name=".nfc.HowItWorks"
3416 android:label="@string/nfc_payment_settings_title"
Martijn Coenencbcc76e2015-06-05 21:28:17 +02003417 android:excludeFromRecents="true">
3418 </activity>
3419
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003420 <activity
3421 android:name="Settings$NotificationAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003422 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003423 android:label="@string/manage_notification_access_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003424 <intent-filter android:priority="1">
3425 <action android:name="android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS" />
3426 <category android:name="android.intent.category.DEFAULT" />
3427 </intent-filter>
Daniel Sandler79b9bfe2013-04-04 14:30:04 -04003428 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
John Spurlock4a350512014-04-08 14:08:21 -04003429 android:value="com.android.settings.notification.NotificationAccessSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003430 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3431 android:value="@string/menu_key_notifications"/>
John Spurlock08531a82015-05-07 17:45:43 -04003432 </activity>
3433
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003434 <activity
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003435 android:name="Settings$NotificationAccessDetailsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003436 android:exported="true"
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003437 android:label="@string/manage_notification_access_title" >
3438 <intent-filter android:priority="1">
3439 <action android:name="android.settings.NOTIFICATION_LISTENER_DETAIL_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003440 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003441 <category android:name="android.intent.category.DEFAULT" />
3442 </intent-filter>
3443 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3444 android:value="com.android.settings.applications.specialaccess.notificationaccess.NotificationAccessDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003445 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3446 android:value="@string/menu_key_notifications"/>
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003447 </activity>
3448
3449 <activity
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003450 android:name="Settings$NotificationAssistantSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003451 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003452 android:label="@string/notification_assistant_title">
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003453 <intent-filter android:priority="1">
3454 <action android:name="android.settings.NOTIFICATION_ASSISTANT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003455 <category android:name="android.intent.category.BROWSABLE" />
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003456 <category android:name="android.intent.category.DEFAULT" />
3457 </intent-filter>
3458 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Chloris Kuo2c955bb2021-03-19 07:00:45 -07003459 android:value="com.android.settings.notification.ConfigureNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003460 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3461 android:value="@string/menu_key_notifications"/>
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003462 </activity>
3463
3464 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003465 android:name="Settings$VrListenersSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003466 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003467 android:label="@string/vr_listeners_title">
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003468 <intent-filter android:priority="1">
3469 <action android:name="android.settings.VR_LISTENER_SETTINGS" />
3470 <category android:name="android.intent.category.DEFAULT" />
3471 </intent-filter>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003472 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangaf155222018-07-11 09:41:39 -07003473 android:value="com.android.settings.applications.specialaccess.vrlistener.VrListenerSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003474 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3475 android:value="@string/menu_key_apps"/>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003476 </activity>
3477
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003478 <activity
3479 android:name="Settings$PictureInPictureSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003480 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003481 android:label="@string/picture_in_picture_title">
Winson Chung0a0d95a2017-01-20 11:22:44 -08003482 <intent-filter android:priority="1">
3483 <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" />
3484 <category android:name="android.intent.category.DEFAULT" />
3485 </intent-filter>
3486 <intent-filter>
3487 <action android:name="android.intent.action.MAIN" />
3488 <category android:name="android.intent.category.DEFAULT" />
3489 </intent-filter>
3490 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang4560ab72018-07-10 15:46:31 -07003491 android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003492 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3493 android:value="@string/menu_key_apps"/>
Winson Chung0a0d95a2017-01-20 11:22:44 -08003494 </activity>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003495
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003496 <activity
3497 android:name="Settings$AppPictureInPictureSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003498 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003499 android:label="@string/picture_in_picture_title">
Winson Chung217d0e92017-03-17 15:48:38 -07003500 <intent-filter>
3501 <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" />
3502 <category android:name="android.intent.category.DEFAULT" />
3503 <data android:scheme="package" />
3504 </intent-filter>
3505 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang4560ab72018-07-10 15:46:31 -07003506 android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003507 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3508 android:value="@string/menu_key_apps"/>
Winson Chung217d0e92017-03-17 15:48:38 -07003509 </activity>
3510
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003511 <activity
Philip Junker8a978052022-03-14 18:08:46 +00003512 android:name="Settings$TurnScreenOnSettingsActivity"
3513 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003514 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Philip Junker8a978052022-03-14 18:08:46 +00003515 android:label="@string/turn_screen_on_title">
3516 <intent-filter android:priority="1">
3517 <action android:name="android.settings.TURN_SCREEN_ON_SETTINGS" />
3518 <category android:name="android.intent.category.DEFAULT" />
3519 </intent-filter>
3520 <intent-filter>
3521 <action android:name="android.intent.action.MAIN" />
3522 <category android:name="android.intent.category.DEFAULT" />
3523 </intent-filter>
3524 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Philip Junkerded7f452023-04-19 11:59:19 +00003525 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Philip Junker8a978052022-03-14 18:08:46 +00003526 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3527 android:value="@string/menu_key_apps"/>
3528 </activity>
3529
3530 <activity
Philip Junkerded7f452023-04-19 11:59:19 +00003531 android:name="Settings$AppTurnScreenOnSettingsActivity"
3532 android:exported="true"
3533 android:label="@string/turn_screen_on_title">
3534 <intent-filter android:priority="1">
3535 <action android:name="android.settings.TURN_SCREEN_ON_SETTINGS" />
3536 <category android:name="android.intent.category.DEFAULT" />
3537 <data android:scheme="package" />
3538 </intent-filter>
3539 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3540 android:value="com.android.settings.applications.specialaccess.turnscreenon.TurnScreenOnDetails"/>
3541 </activity>
3542
3543 <activity
kholoud mohamed14a887f2020-01-29 17:38:31 +00003544 android:name="Settings$InteractAcrossProfilesSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003545 android:exported="true"
kholoud mohamed14a887f2020-01-29 17:38:31 +00003546 android:label="@string/interact_across_profiles_title">
3547 <intent-filter android:priority="1">
3548 <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" />
3549 <category android:name="android.intent.category.DEFAULT" />
3550 </intent-filter>
3551 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3552 android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003553 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3554 android:value="@string/menu_key_apps"/>
kholoud mohamed14a887f2020-01-29 17:38:31 +00003555 </activity>
3556
3557 <activity android:name="Settings$AppInteractAcrossProfilesSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003558 android:exported="true"
kholoud mohamed14a887f2020-01-29 17:38:31 +00003559 android:label="@string/interact_across_profiles_title">
3560 <intent-filter>
3561 <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" />
3562 <category android:name="android.intent.category.DEFAULT" />
3563 <data android:scheme="package" />
3564 </intent-filter>
3565 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3566 android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003567 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3568 android:value="@string/menu_key_apps"/>
kholoud mohamed14a887f2020-01-29 17:38:31 +00003569 </activity>
3570
3571 <activity
Fan Zhange366f022019-03-19 13:08:10 -07003572 android:name="Settings$ZenAccessDetailSettingsActivity"
3573 android:label="@string/manage_zen_access_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003574 android:exported="true"
Fan Zhange366f022019-03-19 13:08:10 -07003575 android:excludeFromRecents="true">
3576 <intent-filter>
3577 <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_DETAIL_SETTINGS" />
3578 <category android:name="android.intent.category.DEFAULT" />
3579 <data android:scheme="package" />
3580 </intent-filter>
3581 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3582 android:value="com.android.settings.applications.specialaccess.zenaccess.ZenAccessDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003583 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3584 android:value="@string/menu_key_notifications"/>
Fan Zhange366f022019-03-19 13:08:10 -07003585 </activity>
3586
3587 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003588 android:name="Settings$ZenAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003589 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003590 android:label="@string/manage_zen_access_title">
John Spurlock08531a82015-05-07 17:45:43 -04003591 <intent-filter android:priority="1">
John Spurlocka00194d2015-06-04 13:01:59 -04003592 <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_SETTINGS" />
John Spurlock08531a82015-05-07 17:45:43 -04003593 <category android:name="android.intent.category.DEFAULT" />
3594 </intent-filter>
John Spurlock08531a82015-05-07 17:45:43 -04003595 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003596 android:value="com.android.settings.notification.zen.ZenAccessSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003597 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3598 android:value="@string/menu_key_notifications"/>
Daniel Sandler79b9bfe2013-04-04 14:30:04 -04003599 </activity>
3600
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003601 <activity
3602 android:name="Settings$ConfigureNotificationSettingsActivity"
3603 android:label="@string/configure_notification_settings"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003604 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003605 <intent-filter android:priority="1">
3606 <action android:name="android.settings.NOTIFICATION_SETTINGS" />
3607 <category android:name="android.intent.category.DEFAULT" />
3608 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003609 <intent-filter android:priority="21">
Dan Sandler347f9442014-03-11 01:32:47 -04003610 <action android:name="android.intent.action.MAIN" />
Dan Sandler347f9442014-03-11 01:32:47 -04003611 <category android:name="com.android.settings.SHORTCUT" />
3612 </intent-filter>
3613 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003614 android:value="com.android.settings.notification.ConfigureNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003615 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3616 android:value="@string/menu_key_notifications"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003617 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3618 android:value="true" />
Dan Sandler347f9442014-03-11 01:32:47 -04003619 </activity>
3620
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003621 <activity
Julia Reynolds6a88e142020-06-02 11:20:13 -04003622 android:name="Settings$ConversationListSettingsActivity"
3623 android:label="@string/zen_mode_conversations_title"
3624 android:exported="true">
3625 <intent-filter android:priority="1">
3626 <action android:name="android.settings.CONVERSATION_SETTINGS" />
3627 <category android:name="android.intent.category.DEFAULT" />
3628 </intent-filter>
3629 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3630 android:value="com.android.settings.notification.app.ConversationListSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003631 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3632 android:value="@string/menu_key_apps"/>
Julia Reynolds6a88e142020-06-02 11:20:13 -04003633 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3634 android:value="true" />
3635 </activity>
3636
3637 <activity
Julia Reynolds4e48da92019-03-26 09:04:22 -04003638 android:name="Settings$AppBubbleNotificationSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003639 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003640 android:label="@string/bubbles_app_toggle_title">
Julia Reynolds4e48da92019-03-26 09:04:22 -04003641 <intent-filter android:priority="1">
3642 <action android:name="android.settings.APP_NOTIFICATION_BUBBLE_SETTINGS" />
3643 <category android:name="android.intent.category.DEFAULT" />
3644 </intent-filter>
3645 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003646 android:value="com.android.settings.notification.app.AppBubbleNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003647 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3648 android:value="@string/menu_key_apps"/>
Julia Reynolds4e48da92019-03-26 09:04:22 -04003649 </activity>
3650
3651 <activity
Amber Ogata9d5de292020-12-16 20:37:22 +00003652 android:name="Settings$PremiumSmsAccessActivity"
3653 android:label="@string/premium_sms_access"
3654 android:exported="true">
3655 <intent-filter>
3656 <action android:name="android.settings.PREMIUM_SMS_SETTINGS" />
3657 <category android:name="android.intent.category.DEFAULT" />
3658 <data android:scheme="package" />
3659 </intent-filter>
3660 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3661 android:value="com.android.settings.applications.specialaccess.premiumsms.PremiumSmsAccess" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003662 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3663 android:value="@string/menu_key_apps"/>
Amber Ogata9d5de292020-12-16 20:37:22 +00003664 </activity>
3665
3666 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003667 android:name="Settings$SoundSettingsActivity"
3668 android:label="@string/sound_settings"
3669 android:icon="@drawable/ic_homepage_sound"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003670 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003671 <intent-filter android:priority="1">
John Spurlock4e4cdef2014-05-28 09:43:45 -04003672 <action android:name="com.android.settings.SOUND_SETTINGS" />
3673 <action android:name="android.settings.SOUND_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003674 <category android:name="android.intent.category.BROWSABLE" />
Kenny Guyf9f279e2017-04-04 18:01:13 +01003675 <action android:name="android.settings.ACTION_OTHER_SOUND_SETTINGS" />
John Spurlock4e4cdef2014-05-28 09:43:45 -04003676 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003677 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003678 <intent-filter android:priority="40">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003679 <action android:name="android.intent.action.MAIN" />
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003680 <category android:name="com.android.settings.SHORTCUT" />
John Spurlock4e4cdef2014-05-28 09:43:45 -04003681 </intent-filter>
3682 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003683 android:value="com.android.settings.notification.SoundSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003684 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3685 android:value="@string/menu_key_sound"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003686 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3687 android:value="true" />
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003688 </activity>
John Spurlock4e4cdef2014-05-28 09:43:45 -04003689
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003690 <!-- Show apps for which application-level notification settings are applicable -->
3691 <activity android:name="Settings$NotificationAppListActivity"
3692 android:label="@string/app_notifications_title"
3693 android:icon="@drawable/ic_notifications"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003694 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang416ff0a2018-10-26 15:39:39 -07003695 android:exported="true">
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003696 <intent-filter android:priority="1">
3697 <action android:name="android.settings.ALL_APPS_NOTIFICATION_SETTINGS" />
3698 <category android:name="android.intent.category.DEFAULT" />
3699 </intent-filter>
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003700 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3701 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003702 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3703 android:value="@string/menu_key_notifications"/>
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003704 </activity>
3705
“Ankitaa6ff8972022-10-03 05:01:00 +00003706 <!-- Displays a list of apps available for cloning on the device -->
3707 <activity android:name=".Settings$ClonedAppsListActivity"
3708 android:label="@string/cloned_apps_dashboard_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003709 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
“Ankitaa6ff8972022-10-03 05:01:00 +00003710 android:exported="true">
3711 <intent-filter android:priority="1">
3712 <action android:name="android.settings.MANAGE_CLONED_APPS_SETTINGS" />
3713 <category android:name="android.intent.category.DEFAULT" />
3714 </intent-filter>
3715 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3716 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
3717 </activity>
3718
Yuri Lin554ab1f2022-04-12 17:05:49 -04003719 <!-- Application-level notification settings page, same as above but only accessible
3720 internally from system server -->
3721 <activity android:name="Settings$NotificationReviewPermissionsActivity"
3722 android:label="@string/app_notifications_title"
3723 android:icon="@drawable/ic_notifications"
3724 android:exported="false">
3725 <intent-filter android:priority="1">
3726 <action android:name="android.settings.ALL_APPS_NOTIFICATION_SETTINGS_FOR_REVIEW" />
3727 <category android:name="android.intent.category.DEFAULT" />
3728 </intent-filter>
3729 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3730 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
3731 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3732 android:value="@string/menu_key_notifications"/>
3733 </activity>
3734
John Spurlock802ddf92014-07-18 11:51:13 -04003735 <!-- Show application-level notification settings (app passed in as extras) -->
3736 <activity android:name="Settings$AppNotificationSettingsActivity"
John Spurlockb8ec3432014-07-27 13:33:34 -04003737 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003738 <intent-filter android:priority="1">
3739 <action android:name="android.settings.APP_NOTIFICATION_SETTINGS" />
3740 <category android:name="android.intent.category.DEFAULT" />
3741 </intent-filter>
John Spurlock802ddf92014-07-18 11:51:13 -04003742 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003743 android:value="com.android.settings.notification.app.AppNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003744 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3745 android:value="@string/menu_key_notifications"/>
John Spurlockb8ec3432014-07-27 13:33:34 -04003746 </activity>
3747
Julia Reynolds69492882017-01-25 10:32:07 -05003748 <!-- Show channel-level notification settings (channel passed in as extras) -->
Julia Reynoldsefe26e22021-03-10 21:38:49 -05003749 <activity android:name=".notification.app.ChannelPanelActivity"
Julia Reynoldse2897ae2018-04-19 10:04:53 -04003750 android:label="@string/notification_channel_title"
Edgar Wang2917c0c2023-05-30 08:28:30 +00003751 android:theme="@style/Theme.Panel.Material"
Julia Reynoldsefe26e22021-03-10 21:38:49 -05003752 android:excludeFromRecents="true"
Valentin Iftime1e81f6e2023-01-30 10:44:37 +01003753 android:configChanges="keyboardHidden|screenSize"
Julia Reynolds69492882017-01-25 10:32:07 -05003754 android:exported="true">
3755 <intent-filter android:priority="1">
3756 <action android:name="android.settings.CHANNEL_NOTIFICATION_SETTINGS" />
3757 <category android:name="android.intent.category.DEFAULT" />
3758 </intent-filter>
Julia Reynolds69492882017-01-25 10:32:07 -05003759 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003760 android:value="com.android.settings.notification.app.ChannelNotificationSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003761 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3762 android:value="@string/menu_key_notifications"/>
Julia Reynolds69492882017-01-25 10:32:07 -05003763 </activity>
3764
Zachary Kuznia5adcb3d2015-08-07 16:32:28 -07003765 <!-- Show Manual (from settings item) -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003766 <activity
3767 android:name="ManualDisplayActivity"
3768 android:label="@string/manual"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003769 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003770 android:enabled="@bool/config_show_manual">
Zachary Kuznia5adcb3d2015-08-07 16:32:28 -07003771 <intent-filter>
3772 <action android:name="android.settings.SHOW_MANUAL" />
3773 <category android:name="android.intent.category.DEFAULT" />
3774 </intent-filter>
3775 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3776 android:value="true" />
3777 </activity>
3778
Jake Hamby5e9bd862013-04-09 15:48:25 -07003779 <!-- Show regulatory info (from settings item or dialing "*#07#") -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003780 <activity
3781 android:name="RegulatoryInfoDisplayActivity"
Chaohui Wang590b4e72023-07-07 15:31:20 +08003782 android:theme="@style/Theme.AlertDialog"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003783 android:label="@string/regulatory_labels"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003784 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003785 android:enabled="@bool/config_show_regulatory_info">
Jeff Sharkey3daa2592014-04-18 15:30:15 -07003786 <intent-filter>
Jake Hamby5e9bd862013-04-09 15:48:25 -07003787 <action android:name="android.settings.SHOW_REGULATORY_INFO" />
Han Xub7d10772022-08-15 19:19:55 +08003788 <category android:name="android.intent.category.BROWSABLE" />
Jake Hamby5e9bd862013-04-09 15:48:25 -07003789 <category android:name="android.intent.category.DEFAULT" />
3790 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003791 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3792 android:value="true" />
Jake Hamby5e9bd862013-04-09 15:48:25 -07003793 </activity>
3794
Eugene Susla57544122017-04-14 10:42:59 -07003795 <!-- Confirmation dialog for enabling notification access from CompanionDeviceManager -->
3796 <activity android:name=".notification.NotificationAccessConfirmationActivity"
Guojing Yuan19235b82021-05-12 17:06:42 +00003797 android:taskAffinity=".notification.NotificationAccessConfirmationActivity"
Eugene Susla57544122017-04-14 10:42:59 -07003798 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
3799
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003800 <receiver android:name="com.android.settingslib.bluetooth.BluetoothDiscoverableTimeoutReceiver"
3801 android:exported="true">
Srikanth Uppala59a97f72012-04-04 03:32:22 -07003802 <intent-filter>
3803 <action android:name="android.bluetooth.intent.DISCOVERABLE_TIMEOUT" />
3804 </intent-filter>
3805 </receiver>
3806
Amith Yamasani32dccbc2012-09-13 18:06:49 -07003807 <!-- Watch for ContactsContract.Profile changes and update the user's photo. -->
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003808 <receiver android:name=".users.ProfileUpdateReceiver"
3809 android:exported="true">
Amith Yamasani32dccbc2012-09-13 18:06:49 -07003810 <intent-filter>
3811 <action android:name="android.provider.Contacts.PROFILE_CHANGED" />
3812 </intent-filter>
3813 </receiver>
3814
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003815 <receiver android:name=".sim.SimSelectNotification"
3816 android:exported="true">
PauloftheWest63f7bc82014-10-30 08:01:30 -07003817 <intent-filter>
Malcolm Chena05e6f82019-03-27 17:45:29 -07003818 <action android:name="android.telephony.action.PRIMARY_SUBSCRIPTION_LIST_CHANGED"/>
Malcolm Chen7dd82f92019-04-18 19:45:04 -07003819 <action android:name="android.settings.ENABLE_MMS_DATA_REQUEST"/>
PauloftheWest63f7bc82014-10-30 08:01:30 -07003820 </intent-filter>
3821 </receiver>
3822
Amith Yamasani2ad96252013-09-09 13:07:27 -07003823 <provider
Aurimas Liutikase0069d32018-04-17 11:22:43 -07003824 android:name="androidx.core.content.FileProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003825 android:authorities="${applicationId}.files"
Amith Yamasani2ad96252013-09-09 13:07:27 -07003826 android:grantUriPermissions="true"
3827 android:exported="false">
3828 <meta-data
3829 android:name="android.support.FILE_PROVIDER_PATHS"
3830 android:resource="@xml/file_paths" />
3831 </provider>
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003832
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07003833 <provider
3834 android:name=".deviceinfo.legal.ModuleLicenseProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003835 android:authorities="${applicationId}.module_licenses"
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07003836 android:grantUriPermissions="true"
3837 android:exported="false"/>
3838
Fan Zhang9fdceae2021-03-10 21:45:19 +00003839 <provider
3840 android:name=".emergency.EmergencyActionContentProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003841 android:authorities="${applicationId}.emergency"
Fan Zhang9fdceae2021-03-10 21:45:19 +00003842 android:permission="android.permission.CALL_PRIVILEGED"
3843 android:exported="true"/>
3844
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003845 <activity
3846 android:name=".wifi.RequestToggleWiFiActivity"
3847 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"
Svetoslav Ganov871078e2016-07-26 18:26:45 -07003848 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003849 android:exported="true"
Svetoslav Ganov871078e2016-07-26 18:26:45 -07003850 android:permission="android.permission.CHANGE_WIFI_STATE">
3851 <intent-filter>
3852 <action android:name="android.net.wifi.action.REQUEST_ENABLE" />
3853 <action android:name="android.net.wifi.action.REQUEST_DISABLE" />
3854 <category android:name="android.intent.category.DEFAULT" />
3855 </intent-filter>
3856 </activity>
3857
Weng Su56a88882021-07-06 11:30:17 +08003858 <!--
3859 The Wi-Fi result data will only be returned from WifiDialogActivity if the calling
3860 package has ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission. (see b/185126813)
3861 -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003862 <activity
3863 android:name=".wifi.WifiDialogActivity"
Udam Saini86d52c92016-03-10 11:30:53 -08003864 android:label=""
Maurice Lam771fac52015-09-08 10:36:43 -07003865 android:theme="@style/Transparent"
3866 android:excludeFromRecents="true"
lindatseng8d7d0132019-05-21 14:41:11 -07003867 android:documentLaunchMode="always"
Maurice Lamec1f2ee2015-10-29 16:40:49 -07003868 android:exported="true"
Udam Saini0ec68622015-12-21 10:52:34 -08003869 android:permission="android.permission.CHANGE_WIFI_STATE"
Weng Su179fc5e2023-04-24 12:29:34 +08003870 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout">
Maurice Lam771fac52015-09-08 10:36:43 -07003871 <intent-filter>
3872 <action android:name="com.android.settings.WIFI_DIALOG" />
3873 <category android:name="android.intent.category.DEFAULT" />
3874 </intent-filter>
3875 </activity>
3876
cosmohsiehda37bb72018-11-26 11:58:02 +08003877 <activity
3878 android:name=".wifi.NetworkRequestDialogActivity"
govenliudbf920c2019-08-19 16:22:22 +08003879 android:theme="@style/Theme.AlertDialog"
cosmohsiehda37bb72018-11-26 11:58:02 +08003880 android:excludeFromRecents="true"
cosmohsiehed2fac12019-03-21 13:32:19 +08003881 android:launchMode="singleTop"
3882 android:taskAffinity=".wifi.NetworkRequestDialogActivity"
cosmohsiehda37bb72018-11-26 11:58:02 +08003883 android:exported="true"
Roshan Piusb2db1f02019-11-19 15:45:40 +00003884 android:permission="android.permission.NETWORK_SETTINGS">
cosmohsiehda37bb72018-11-26 11:58:02 +08003885 <intent-filter>
cosmohsieh1e2e6142019-01-11 10:02:24 +08003886 <action android:name="com.android.settings.wifi.action.NETWORK_REQUEST" />
cosmohsiehda37bb72018-11-26 11:58:02 +08003887 <category android:name="android.intent.category.DEFAULT" />
3888 </intent-filter>
3889 </activity>
3890
Jason Chiu2c3e6c62019-04-30 14:41:19 +08003891 <receiver
Jason Chiuda2ca2f2019-01-29 17:13:28 +08003892 android:name=".wifi.slice.ConnectToWifiHandler"
Jason Chiuda2ca2f2019-01-29 17:13:28 +08003893 android:exported="false" />
3894
Antony Sargenta7dc2772019-04-12 15:08:16 -07003895 <activity
3896 android:name=".sim.SimDialogActivity"
SongFerngWangbe8f2792021-12-21 12:58:12 +08003897 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"
Antony Sargenta7dc2772019-04-12 15:08:16 -07003898 android:label="@string/sim_settings_title"
3899 android:launchMode="singleTop"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003900 android:exported="true"
Antony Sargenta7dc2772019-04-12 15:08:16 -07003901 android:excludeFromRecents="true">
PauloftheWestffef98b2014-11-18 07:12:48 -08003902 <intent-filter>
3903 <action android:name="android.intent.action.MAIN" />
PauloftheWestffef98b2014-11-18 07:12:48 -08003904 </intent-filter>
3905 </activity>
3906
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003907 <activity
Fan Zhang03dd39c2019-04-02 16:41:01 -07003908 android:name=".flashlight.FlashlightHandleActivity"
3909 android:theme="@android:style/Theme.NoDisplay"
3910 android:excludeFromRecents="true"
3911 android:exported="true"
3912 android:label="@string/power_flashlight"/>
3913
3914 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003915 android:name="Settings$WifiCallingSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003916 android:exported="true"
Zoey Chen6cf16b02021-11-01 16:46:12 +08003917 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout"
Fan Zhang416ff0a2018-10-26 15:39:39 -07003918 android:label="@string/wifi_calling_settings_title">
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003919 <intent-filter>
3920 <action android:name="android.intent.action.MAIN" />
3921 <action android:name="android.settings.WIFI_CALLING_SETTINGS" />
3922 <category android:name="android.intent.category.DEFAULT" />
3923 <category android:name="android.intent.category.VOICE_LAUNCH" />
3924 </intent-filter>
3925 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb91db422018-02-09 10:25:55 -08003926 android:value="com.android.settings.wifi.calling.WifiCallingSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003927 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3928 android:value="@string/menu_key_network"/>
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003929 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3930 android:value="true" />
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003931 </activity>
3932
Fan Zhangb91db422018-02-09 10:25:55 -08003933 <activity android:name=".wifi.calling.WifiCallingSuggestionActivity"
Jason Monkd3ac2392016-01-27 13:54:35 -05003934 android:label="@string/wifi_calling_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003935 android:exported="true"
Mill Chen71958002019-01-23 10:44:39 +08003936 android:icon="@drawable/ic_suggestion_wireless">
Jason Monkd3ac2392016-01-27 13:54:35 -05003937 <intent-filter>
3938 <action android:name="android.intent.action.MAIN" />
Fan Zhang7afbf0f2017-05-08 09:31:01 -07003939 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003940 </intent-filter>
3941 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb91db422018-02-09 10:25:55 -08003942 android:value="com.android.settings.wifi.calling.WifiCallingSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003943 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3944 android:value="@string/menu_key_network"/>
Jason Monkd3ac2392016-01-27 13:54:35 -05003945 <meta-data android:name="com.android.settings.dismiss"
Fan Zhangaf91c1f2017-06-03 15:24:11 -07003946 android:value="10,14,30" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003947 <meta-data android:name="com.android.settings.title"
3948 android:resource="@string/wifi_calling_suggestion_title" />
Jason Monkec1f28e2016-02-24 17:39:29 -05003949 <meta-data android:name="com.android.settings.summary"
3950 android:resource="@string/wifi_calling_suggestion_summary" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003951 </activity>
3952
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003953 <provider
3954 android:name=".search.SettingsSearchIndexablesProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003955 android:authorities="${applicationId}"
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003956 android:multiprocess="false"
3957 android:grantUriPermissions="true"
3958 android:permission="android.permission.READ_SEARCH_INDEXABLES"
3959 android:exported="true">
3960 <intent-filter>
3961 <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
3962 </intent-filter>
3963 </provider>
3964
Fan Zhang2985a072017-09-27 17:32:46 -07003965 <provider
3966 android:name=".dashboard.suggestions.SuggestionStateProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003967 android:authorities="${applicationId}.suggestions.status"
Fan Zhang2985a072017-09-27 17:32:46 -07003968 android:exported="true">
3969 <intent-filter>
3970 <action android:name="com.android.settings.action.SUGGESTION_STATE_PROVIDER" />
3971 </intent-filter>
3972 </provider>
3973
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003974 <activity
3975 android:name="Settings$OverlaySettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003976 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003977 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003978 android:label="@string/draw_overlay">
Billy Lau7f70ba12015-07-03 17:01:18 +01003979 <intent-filter android:priority="1">
3980 <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" />
3981 <category android:name="android.intent.category.DEFAULT" />
3982 </intent-filter>
Billy Laufee78562015-07-27 12:57:07 +01003983 <intent-filter android:priority="1">
3984 <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" />
3985 <category android:name="android.intent.category.DEFAULT" />
3986 <data android:scheme="package" />
3987 </intent-filter>
3988 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Bernardo Rufino897a0e02019-11-06 15:00:27 +00003989 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003990 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3991 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08003992 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3993 android:value="true" />
Billy Laufee78562015-07-27 12:57:07 +01003994 </activity>
3995
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003996 <activity
Bernardo Rufino88540312019-11-25 19:40:53 +00003997 android:name="Settings$AppDrawOverlaySettingsActivity"
3998 android:label="@string/draw_overlay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003999 android:exported="true"
Bernardo Rufino88540312019-11-25 19:40:53 +00004000 android:permission="android.permission.INTERNAL_SYSTEM_WINDOW">
4001 <intent-filter android:priority="1">
4002 <action android:name="android.settings.MANAGE_APP_OVERLAY_PERMISSION" />
4003 <category android:name="android.intent.category.DEFAULT" />
4004 <data android:scheme="package" />
4005 </intent-filter>
4006 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4007 android:value="com.android.settings.applications.appinfo.DrawOverlayDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004008 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4009 android:value="@string/menu_key_apps"/>
Bernardo Rufino88540312019-11-25 19:40:53 +00004010 </activity>
4011
4012 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004013 android:name="Settings$WriteSettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004014 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004015 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004016 android:label="@string/write_settings_title">
Billy Lau7f70ba12015-07-03 17:01:18 +01004017 <intent-filter android:priority="1">
4018 <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08004019 <category android:name="android.intent.category.BROWSABLE" />
Billy Lau7f70ba12015-07-03 17:01:18 +01004020 <category android:name="android.intent.category.DEFAULT" />
4021 </intent-filter>
Billy Laubb3aa262015-07-21 16:43:17 +01004022 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07004023 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004024 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4025 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08004026 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4027 android:value="true" />
Billy Lau7f70ba12015-07-03 17:01:18 +01004028 </activity>
4029
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004030 <activity
4031 android:name="Settings$AppWriteSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004032 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004033 android:label="@string/write_settings_title">
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004034 <intent-filter android:priority="1">
4035 <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" />
4036 <category android:name="android.intent.category.DEFAULT" />
4037 <data android:scheme="package" />
4038 </intent-filter>
4039 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingebf88432017-12-11 11:18:10 -08004040 android:value="com.android.settings.applications.appinfo.WriteSettingsDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004041 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4042 android:value="@string/menu_key_apps"/>
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004043 </activity>
4044
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004045 <activity
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004046 android:name="Settings$AlarmsAndRemindersActivity"
4047 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004048 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004049 android:label="@string/alarms_and_reminders_label">
4050 <intent-filter android:priority="1">
4051 <action android:name="android.settings.REQUEST_SCHEDULE_EXACT_ALARM" />
4052 <category android:name="android.intent.category.DEFAULT" />
4053 </intent-filter>
4054 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4055 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004056 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4057 android:value="@string/menu_key_apps"/>
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004058 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4059 android:value="true" />
4060 </activity>
4061
4062 <activity
4063 android:name="Settings$AlarmsAndRemindersAppActivity"
4064 android:exported="true"
4065 android:label="@string/alarms_and_reminders_label">
4066 <intent-filter android:priority="1">
4067 <action android:name="android.settings.REQUEST_SCHEDULE_EXACT_ALARM" />
4068 <category android:name="android.intent.category.DEFAULT" />
4069 <data android:scheme="package" />
4070 </intent-filter>
4071 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4072 android:value="com.android.settings.applications.appinfo.AlarmsAndRemindersDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004073 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4074 android:value="@string/menu_key_apps"/>
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004075 </activity>
4076
4077 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004078 android:name="Settings$ManageExternalSourcesActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004079 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004080 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004081 android:label="@string/install_other_apps">
Suprabh Shukla57d92312016-12-16 14:44:05 -08004082 <intent-filter android:priority="1">
Suprabh Shuklaed0ba742017-04-20 16:02:54 -07004083 <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" />
Suprabh Shukla57d92312016-12-16 14:44:05 -08004084 <category android:name="android.intent.category.DEFAULT" />
4085 </intent-filter>
4086 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07004087 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004088 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4089 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08004090 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4091 android:value="true" />
Suprabh Shukla57d92312016-12-16 14:44:05 -08004092 </activity>
4093
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004094 <activity android:name="Settings$ManageAppExternalSourcesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004095 android:exported="true"
Fan Zhang416ff0a2018-10-26 15:39:39 -07004096 android:label="@string/install_other_apps">
Billy Laufee78562015-07-27 12:57:07 +01004097 <intent-filter android:priority="1">
Suprabh Shuklaed0ba742017-04-20 16:02:54 -07004098 <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" />
Billy Laufee78562015-07-27 12:57:07 +01004099 <category android:name="android.intent.category.DEFAULT" />
4100 <data android:scheme="package" />
4101 </intent-filter>
4102 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingebf88432017-12-11 11:18:10 -08004103 android:value="com.android.settings.applications.appinfo.ExternalSourcesDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004104 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4105 android:value="@string/menu_key_apps"/>
Billy Laufee78562015-07-27 12:57:07 +01004106 </activity>
4107
arangelove35badd2017-10-27 13:51:28 +01004108 <activity android:name=".enterprise.ActionDisabledByAdminDialog"
Edgar Wang83507b52021-05-27 00:47:03 +08004109 android:theme="@style/Theme.AlertDialog"
Mill Chen078af332019-04-04 15:39:27 -07004110 android:taskAffinity="com.android.settings.enterprise"
Sudheer Shankafee4e3e2016-02-18 17:48:01 +00004111 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004112 android:exported="true"
Sudheer Shankafee4e3e2016-02-18 17:48:01 +00004113 android:launchMode="singleTop">
Sudheer Shankabc1c50c2018-02-13 17:19:38 -08004114 <intent-filter android:priority="1">
Sudheer Shankacb99d942015-12-31 17:46:29 +00004115 <action android:name="android.settings.SHOW_ADMIN_SUPPORT_DETAILS" />
Sudheer Shanka9159fe92015-11-23 12:07:05 +00004116 <category android:name="android.intent.category.DEFAULT" />
4117 </intent-filter>
4118 </activity>
4119
Ricky Waic76a11f2022-01-25 23:04:26 +00004120 <activity android:name=".ActionDisabledByAppOpsDialog"
4121 android:theme="@style/Theme.AlertDialog"
4122 android:taskAffinity="com.android.settings.appops"
4123 android:excludeFromRecents="true"
menghanli3676d1b2022-12-26 11:55:04 +08004124 android:exported="true"
Ricky Waic76a11f2022-01-25 23:04:26 +00004125 android:launchMode="singleTop">
4126 <intent-filter android:priority="1">
4127 <action android:name="android.settings.SHOW_RESTRICTED_SETTING_DIALOG" />
4128 <category android:name="android.intent.category.DEFAULT" />
4129 </intent-filter>
4130 </activity>
4131
shafika54d7a82020-01-08 18:03:22 +00004132 <activity
4133 android:name="Settings$ManageExternalStorageActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004134 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004135 android:exported="true"
shafika54d7a82020-01-08 18:03:22 +00004136 android:label="@string/manage_external_storage_title">
4137 <intent-filter android:priority="1">
4138 <action android:name="android.settings.MANAGE_ALL_FILES_ACCESS_PERMISSION" />
4139 <category android:name="android.intent.category.DEFAULT" />
4140 </intent-filter>
4141 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4142 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004143 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4144 android:value="@string/menu_key_storage"/>
shafika54d7a82020-01-08 18:03:22 +00004145 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4146 android:value="true" />
4147 </activity>
4148
4149 <activity
4150 android:name="Settings$AppManageExternalStorageActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004151 android:exported="true"
shafikc32844922020-01-20 16:01:21 +00004152 android:label="@string/manage_external_storage_title">
shafika54d7a82020-01-08 18:03:22 +00004153 <intent-filter android:priority="1">
4154 <action android:name="android.settings.MANAGE_APP_ALL_FILES_ACCESS_PERMISSION" />
4155 <category android:name="android.intent.category.DEFAULT" />
4156 <data android:scheme="package" />
4157 </intent-filter>
4158 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4159 android:value="com.android.settings.applications.appinfo.ManageExternalStorageDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004160 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4161 android:value="@string/menu_key_apps"/>
shafika54d7a82020-01-08 18:03:22 +00004162 </activity>
4163
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004164 <activity
4165 android:name="Settings$MediaManagementAppsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004166 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004167 android:exported="true"
4168 android:label="@string/media_management_apps_title">
4169 <intent-filter android:priority="1">
4170 <action android:name="android.settings.REQUEST_MANAGE_MEDIA" />
4171 <category android:name="android.intent.category.DEFAULT" />
4172 </intent-filter>
4173 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4174 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004175 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4176 android:value="@string/menu_key_apps"/>
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004177 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4178 android:value="true" />
4179 </activity>
4180
4181 <activity
4182 android:name="Settings$AppMediaManagementAppsActivity"
4183 android:exported="true"
4184 android:label="@string/media_management_apps_title">
4185 <intent-filter android:priority="1">
4186 <action android:name="android.settings.REQUEST_MANAGE_MEDIA" />
4187 <category android:name="android.intent.category.DEFAULT" />
4188 <data android:scheme="package" />
4189 </intent-filter>
4190 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4191 android:value="com.android.settings.applications.appinfo.MediaManagementAppsDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004192 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4193 android:value="@string/menu_key_apps"/>
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004194 </activity>
4195
Gustav Sennton4d3334c2016-12-13 19:16:48 +00004196 <!-- Keep compatibility with old WebView-picker implementation -->
4197 <activity-alias android:name=".WebViewImplementation"
Gustav Sennton5b596282017-02-03 16:19:02 +00004198 android:targetActivity="Settings$WebViewAppPickerActivity"
Jason Monk75199542016-05-06 15:09:32 -04004199 android:exported="true"
4200 android:excludeFromRecents="true"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07004201 android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert">
Jason Monk75199542016-05-06 15:09:32 -04004202 <intent-filter>
4203 <action android:name="android.settings.WEBVIEW_SETTINGS" />
4204 <category android:name="android.intent.category.DEFAULT" />
4205 </intent-filter>
4206 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4207 android:value="true" />
Gustav Sennton5b596282017-02-03 16:19:02 +00004208 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4209 android:value="com.android.settings.webview.WebViewAppPicker" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004210 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4211 android:value="@string/menu_key_system"/>
Doris Lingd299b032017-02-28 17:32:36 -08004212 </activity-alias>
Doris Ling91365232016-05-23 17:06:26 -07004213
Chandan Nath0bfef632019-01-28 21:15:13 +00004214 <provider
Raff Tsai6db277e2019-10-02 16:43:23 +08004215 android:name=".dashboard.SummaryProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004216 android:authorities="${applicationId}.dashboard.SummaryProvider">
Chandan Nath0bfef632019-01-28 21:15:13 +00004217 </provider>
4218
4219 <activity android:name=".backup.UserBackupSettingsActivity"
Doris Ling26bf0032016-06-15 18:16:09 -07004220 android:label="@string/privacy_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004221 android:exported="true"
Chandan Nath0bfef632019-01-28 21:15:13 +00004222 android:icon="@drawable/ic_settings_backup">
Doris Ling26bf0032016-06-15 18:16:09 -07004223 <intent-filter>
4224 <action android:name="android.intent.action.MAIN" />
4225 <category android:name="android.intent.category.DEFAULT" />
4226 <category android:name="android.intent.category.VOICE_LAUNCH" />
4227 </intent-filter>
Chandan Nath0bfef632019-01-28 21:15:13 +00004228 <!-- Mark the activity as a dynamic setting -->
4229 <intent-filter>
4230 <action android:name="com.android.settings.action.IA_SETTINGS" />
4231 </intent-filter>
4232 <!-- Tell Settings app which category it belongs to -->
4233 <meta-data android:name="com.android.settings.category"
4234 android:value="com.android.settings.category.ia.system" />
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08004235 <meta-data android:name="com.android.settings.icon"
4236 android:resource="@drawable/ic_settings_backup" />
Chandan Nath0bfef632019-01-28 21:15:13 +00004237 <meta-data android:name="com.android.settings.order" android:value="-60"/>
Doris Ling26bf0032016-06-15 18:16:09 -07004238 </activity>
4239
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004240 <activity
4241 android:name="Settings$AutomaticStorageManagerSettingsActivity"
4242 android:exported="@bool/config_storage_manager_settings_enabled"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004243 android:label="@string/automatic_storage_manager_settings">
Daniel Nishi39818892016-09-20 16:40:49 -07004244 <intent-filter android:priority="1">
4245 <action android:name="android.settings.STORAGE_MANAGER_SETTINGS" />
4246 <category android:name="android.intent.category.DEFAULT" />
4247 </intent-filter>
4248 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4249 android:value="com.android.settings.deletionhelper.AutomaticStorageManagerSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004250 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4251 android:value="@string/menu_key_storage"/>
Daniel Nishi39818892016-09-20 16:40:49 -07004252 </activity>
Fan Zhangcc335d92016-09-29 14:37:14 -07004253
Sean Stout64417232019-04-05 12:34:44 -07004254 <!-- Show app-level advanced power usage details (app passed in as extras) -->
4255 <activity
4256 android:name=".fuelgauge.AdvancedPowerUsageDetailActivity"
4257 android:excludeFromRecents="true"
4258 android:launchMode="singleInstance"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004259 android:exported="true"
Sean Stout64417232019-04-05 12:34:44 -07004260 android:theme="@android:style/Theme.NoDisplay">
4261 <intent-filter>
Sean Stout75ea57a2020-07-14 23:32:14 +00004262 <action android:name="android.settings.VIEW_ADVANCED_POWER_USAGE_DETAIL" />
Sean Stout64417232019-04-05 12:34:44 -07004263 <category android:name="android.intent.category.DEFAULT" />
4264 <data android:scheme="package" />
4265 </intent-filter>
4266 </activity>
4267
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004268 <activity
Yanting Yang92fce8e2020-12-17 23:26:49 +08004269 android:name=".Settings$AppDashboardActivity"
4270 android:label="@string/apps_dashboard_title"
4271 android:icon="@drawable/ic_homepage_apps"
4272 android:exported="true">
4273 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4274 android:value="com.android.settings.applications.AppDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004275 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4276 android:value="@string/menu_key_apps"/>
Yanting Yang92fce8e2020-12-17 23:26:49 +08004277 </activity>
4278
4279 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004280 android:name=".Settings$AccountDashboardActivity"
4281 android:label="@string/account_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004282 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004283 android:icon="@drawable/ic_homepage_accounts">
Fan Zhange2de8d52017-02-13 12:28:43 -08004284 <intent-filter android:priority="1">
4285 <action android:name="android.settings.SYNC_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08004286 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhange2de8d52017-02-13 12:28:43 -08004287 <category android:name="android.intent.category.DEFAULT" />
Becca Hughesb5f8ba62023-02-03 00:04:21 +00004288 </intent-filter>
4289 <intent-filter android:priority="1">
4290 <action android:name="android.settings.CREDENTIAL_PROVIDER" />
4291 <category android:name="android.intent.category.DEFAULT" />
4292 <data android:scheme="package" />
Fan Zhange2de8d52017-02-13 12:28:43 -08004293 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07004294 <intent-filter android:priority="53">
Fan Zhang2f4355a2018-06-21 15:34:43 -07004295 <action android:name="android.intent.action.MAIN" />
4296 <category android:name="com.android.settings.SHORTCUT" />
4297 </intent-filter>
Fan Zhangb75fdfc2016-12-14 11:35:28 -08004298 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang881d5792018-01-26 10:15:56 -08004299 android:value="com.android.settings.accounts.AccountDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004300 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4301 android:value="@string/menu_key_accounts"/>
Rubin Xu71560fc2018-05-17 14:48:49 +01004302 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4303 android:value="true" />
Fan Zhangb75fdfc2016-12-14 11:35:28 -08004304 </activity>
4305
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004306 <activity
4307 android:name=".Settings$SystemDashboardActivity"
4308 android:label="@string/header_category_system"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004309 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004310 android:icon="@drawable/ic_homepage_system_dashboard">
Fan Zhang5a981772018-06-22 14:30:09 -07004311 <intent-filter android:priority="70">
Fan Zhang2f4355a2018-06-21 15:34:43 -07004312 <action android:name="android.intent.action.MAIN" />
4313 <category android:name="com.android.settings.SHORTCUT" />
4314 </intent-filter>
Fan Zhangcc335d92016-09-29 14:37:14 -07004315 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4316 android:value="com.android.settings.system.SystemDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004317 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4318 android:value="@string/menu_key_system"/>
Fan Zhangcc335d92016-09-29 14:37:14 -07004319 </activity>
4320
Fan Zhangb4737302017-05-31 12:43:48 -07004321 <activity android:name=".support.SupportDashboardActivity"
Fan Zhangcc335d92016-09-29 14:37:14 -07004322 android:label="@string/page_tab_title_support"
Fan Zhang925a4f82018-01-23 16:35:31 -08004323 android:icon="@drawable/ic_homepage_support"
Daniel Nishi67ca29f2017-07-17 12:49:04 -07004324 android:theme="@android:style/Theme.DeviceDefault.Light.Panel"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004325 android:exported="true"
Fan Zhang6ff6add2017-03-02 12:07:38 -08004326 android:enabled="@bool/config_support_enabled">
Fan Zhang9445d152018-08-06 10:03:07 -07004327 <intent-filter>
Maurice Lam5f0edba2017-06-08 11:57:40 -07004328 <action android:name="com.android.settings.action.SUPPORT_SETTINGS" />
4329 <category android:name="android.intent.category.DEFAULT" />
4330 </intent-filter>
Fan Zhanga96a2d82016-09-27 17:51:11 -07004331 </activity>
4332
Jason Monkdc252eb2016-01-30 11:36:52 -05004333 <service
4334 android:name=".SettingsDumpService"
4335 android:exported="true"
4336 android:permission="android.permission.DUMP" />
4337
Dan Sandler3bd52dd2016-03-24 10:24:27 -07004338 <!-- Quick Settings tiles for Developer Options -->
4339 <service
Fan Zhang83332602017-10-09 15:53:16 -07004340 android:name=".development.qstile.DevelopmentTiles$ShowLayout"
Sunny Goyalc9607512017-02-06 15:19:00 -08004341 android:label="@string/debug_layout"
4342 android:icon="@drawable/tile_icon_show_layout"
Sunny Goyalbf9f2d22016-11-02 11:20:17 -07004343 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004344 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004345 android:enabled="false">
4346 <intent-filter>
4347 <action android:name="android.service.quicksettings.action.QS_TILE" />
4348 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004349 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004350 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004351 </service>
4352 <service
Fan Zhang83332602017-10-09 15:53:16 -07004353 android:name=".development.qstile.DevelopmentTiles$GPUProfiling"
Sunny Goyalc9607512017-02-06 15:19:00 -08004354 android:label="@string/track_frame_time"
4355 android:icon="@drawable/tile_icon_graphics"
4356 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004357 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004358 android:enabled="false">
4359 <intent-filter>
4360 <action android:name="android.service.quicksettings.action.QS_TILE" />
4361 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004362 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004363 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004364 </service>
4365 <service
Fan Zhang83332602017-10-09 15:53:16 -07004366 android:name=".development.qstile.DevelopmentTiles$ForceRTL"
Sunny Goyalc9607512017-02-06 15:19:00 -08004367 android:label="@string/force_rtl_layout_all_locales"
4368 android:icon="@drawable/tile_icon_force_rtl"
4369 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004370 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004371 android:enabled="false">
4372 <intent-filter>
4373 <action android:name="android.service.quicksettings.action.QS_TILE" />
4374 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004375 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004376 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004377 </service>
4378 <service
Fan Zhang83332602017-10-09 15:53:16 -07004379 android:name=".development.qstile.DevelopmentTiles$AnimationSpeed"
Sunny Goyalc9607512017-02-06 15:19:00 -08004380 android:label="@string/window_animation_scale_title"
4381 android:icon="@drawable/tile_icon_animation_speed"
4382 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004383 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004384 android:enabled="false">
Dan Sandler12c4ba42016-03-28 11:13:40 -04004385 <intent-filter>
4386 <action android:name="android.service.quicksettings.action.QS_TILE" />
4387 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004388 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004389 android:value="true"/>
Dan Sandler12c4ba42016-03-28 11:13:40 -04004390 </service>
Fan Zhang130c4772018-10-01 12:14:06 -07004391
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004392 <service
Vishnu Nair74100b32018-02-22 07:14:36 -08004393 android:name=".development.qstile.DevelopmentTiles$WinscopeTrace"
4394 android:label="@string/winscope_trace_quick_settings_title"
4395 android:icon="@drawable/tile_icon_winscope_trace"
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004396 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004397 android:exported="true"
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004398 android:enabled="false">
4399 <intent-filter>
4400 <action android:name="android.service.quicksettings.action.QS_TILE" />
4401 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004402 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004403 android:value="true"/>
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004404 </service>
Daniel Nishi80c20442016-05-04 10:08:36 -07004405
Michael Groover3a665ac2019-03-19 19:13:17 -07004406 <service
4407 android:name=".development.qstile.DevelopmentTiles$SensorsOff"
4408 android:label="@string/sensors_off_quick_settings_title"
4409 android:icon="@drawable/tile_icon_sensors_off"
4410 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004411 android:exported="true"
Michael Groover3a665ac2019-03-19 19:13:17 -07004412 android:enabled="false">
4413 <intent-filter>
4414 <action android:name="android.service.quicksettings.action.QS_TILE" />
4415 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004416 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004417 android:value="true"/>
Michael Groover3a665ac2019-03-19 19:13:17 -07004418 </service>
4419
Joshua Duong0f3eba32020-04-07 00:17:17 -07004420 <service
4421 android:name=".development.qstile.DevelopmentTiles$WirelessDebugging"
4422 android:label="@string/enable_adb_wireless"
4423 android:icon="@drawable/tile_icon_debugging_wireless"
4424 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004425 android:exported="true"
Joshua Duong0f3eba32020-04-07 00:17:17 -07004426 android:enabled="false">
4427 <intent-filter>
4428 <action android:name="android.service.quicksettings.action.QS_TILE" />
4429 </intent-filter>
4430 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4431 android:value="true"/>
4432 </service>
4433
Chris Ye39b586f2020-06-11 17:57:16 -07004434 <service
4435 android:name=".development.qstile.DevelopmentTiles$ShowTaps"
4436 android:label="@string/show_touches"
4437 android:icon="@drawable/tile_icon_show_taps"
4438 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Oruganti917aa552020-06-24 16:36:28 -07004439 android:exported="true"
Chris Ye39b586f2020-06-11 17:57:16 -07004440 android:enabled="false">
4441 <intent-filter>
4442 <action android:name="android.service.quicksettings.action.QS_TILE" />
4443 </intent-filter>
4444 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4445 android:value="true"/>
4446 </service>
4447
Ats Jenkfe2a1682022-06-17 14:32:59 -07004448 <service
4449 android:name=".development.qstile.DevelopmentTiles$DesktopMode"
4450 android:label="@string/desktop_mode"
4451 android:icon="@drawable/tile_icon_desktop_mode"
4452 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
4453 android:exported="true"
4454 android:enabled="false">
4455 <intent-filter>
4456 <action android:name="android.service.quicksettings.action.QS_TILE" />
4457 </intent-filter>
4458 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4459 android:value="true"/>
Ats Jenk618876c2022-09-22 16:44:51 -07004460 <meta-data android:name="com.android.settings.development.qstile.REQUIRES_SYSTEM_PROPERTY"
4461 android:value="persist.wm.debug.desktop_mode" />
Ats Jenkfe2a1682022-06-17 14:32:59 -07004462 </service>
4463
Fan Zhang7373ec02018-08-14 13:25:47 -07004464 <activity
4465 android:name=".HelpTrampoline"
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004466 android:exported="true"
Fan Zhang7373ec02018-08-14 13:25:47 -07004467 android:theme="@style/Transparent"
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004468 android:permission="android.permission.DUMP"
Fan Zhang7373ec02018-08-14 13:25:47 -07004469 android:excludeFromRecents="true"
Tsung-Mao Fang98b9b342021-11-17 13:46:08 +08004470 android:enabled="@*android:bool/config_settingsHelpLinksEnabled" />
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004471
Felipe Lemef7d54ba2017-04-25 16:42:55 -07004472 <activity android:name=".applications.autofill.AutofillPickerActivity"
4473 android:excludeFromRecents="true"
4474 android:launchMode="singleInstance"
4475 android:exported="false">
4476 </activity>
4477
4478 <activity android:name=".applications.autofill.AutofillPickerTrampolineActivity"
4479 android:theme="@android:style/Theme.NoDisplay"
4480 android:excludeFromRecents="true"
4481 android:launchMode="singleInstance"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004482 android:exported="true"
Felipe Lemef7d54ba2017-04-25 16:42:55 -07004483 android:label="@string/autofill_app">
Felipe Lemedb2b55a2017-04-24 18:10:09 -07004484 <intent-filter android:priority="1">
4485 <action android:name="android.settings.REQUEST_SET_AUTOFILL_SERVICE" />
4486 <category android:name="android.intent.category.DEFAULT" />
4487 <data android:scheme="package" />
4488 </intent-filter>
4489 </activity>
4490
Daniel Nishi232ebf12018-01-19 14:11:20 -08004491 <activity android:name="Settings$AdvancedConnectedDeviceActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004492 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004493 android:label="@string/connected_device_connections_title">
Daniel Nishi232ebf12018-01-19 14:11:20 -08004494 <intent-filter android:priority="1">
4495 <action android:name="com.android.settings.ADVANCED_CONNECTED_DEVICE_SETTINGS" />
4496 <category android:name="android.intent.category.DEFAULT" />
4497 </intent-filter>
Daniel Nishi232ebf12018-01-19 14:11:20 -08004498 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4499 android:value="com.android.settings.connecteddevice.AdvancedConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004500 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4501 android:value="@string/menu_key_connected_devices"/>
Daniel Nishi232ebf12018-01-19 14:11:20 -08004502 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4503 android:value="true" />
4504 </activity>
4505
Viesturs Zarins6cfc5932022-09-15 16:17:47 +00004506 <activity android:name="Settings$NfcSettingsActivity"
4507 android:exported="true"
4508 android:label="@string/nfc_quick_toggle_title">
4509 <intent-filter android:priority="1">
4510 <action android:name="android.settings.NFC_SETTINGS" />
4511 <category android:name="android.intent.category.DEFAULT" />
4512 </intent-filter>
4513 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4514 android:value="com.android.settings.connecteddevice.NfcAndPaymentFragment" />
4515 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4516 android:value="@string/menu_key_connected_devices"/>
4517 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4518 android:value="true" />
4519 </activity>
4520
jackqdyulei715408e2019-02-07 15:47:52 -08004521 <activity android:name="Settings$BluetoothDeviceDetailActivity"
4522 android:label="@string/device_details_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004523 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06004524 android:permission="android.permission.BLUETOOTH_CONNECT">
jackqdyulei715408e2019-02-07 15:47:52 -08004525 <intent-filter android:priority="1">
4526 <action android:name="com.android.settings.BLUETOOTH_DEVICE_DETAIL_SETTINGS" />
4527 <category android:name="android.intent.category.DEFAULT" />
4528 </intent-filter>
4529 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4530 android:value="com.android.settings.bluetooth.BluetoothDeviceDetailsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004531 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4532 android:value="@string/menu_key_connected_devices"/>
hughchenb78ecc42019-10-16 15:27:17 +08004533 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4534 android:value="true" />
jackqdyulei715408e2019-02-07 15:47:52 -08004535 </activity>
4536
changbettya56e1982022-03-29 01:14:05 +00004537 <activity
4538 android:name="Settings$BluetoothBroadcastActivity"
4539 android:exported="true"
4540 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"
4541 android:permission="android.permission.BLUETOOTH_CONNECT"
4542 android:configChanges="orientation|keyboardHidden|screenSize">
4543 <intent-filter android:priority="1">
4544 <action android:name="android.settings.MEDIA_BROADCAST_DIALOG" />
4545 <category android:name="android.intent.category.DEFAULT" />
4546 </intent-filter>
4547 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
changbettyf31b5762022-04-28 15:49:49 +00004548 android:value="com.android.settings.bluetooth.BluetoothBroadcastDialog" />
changbettya56e1982022-03-29 01:14:05 +00004549 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4550 android:value="true" />
4551 </activity>
4552
4553 <activity
4554 android:name="Settings$BluetoothFindBroadcastsActivity"
4555 android:label="@string/bluetooth_find_broadcast_title"
4556 android:exported="true"
4557 android:permission="android.permission.BLUETOOTH_CONNECT"
4558 android:configChanges="orientation|keyboardHidden|screenSize">
4559 <intent-filter android:priority="1">
4560 <action android:name="android.settings.BLUTOOTH_FIND_BROADCASTS_ACTIVITY" />
4561 <category android:name="android.intent.category.DEFAULT" />
4562 </intent-filter>
4563 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4564 android:value="com.android.settings.bluetooth.BluetoothFindBroadcastsFragment" />
4565 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4566 android:value="true" />
4567 </activity>
4568
Vania Januareb09f892022-12-30 13:24:29 +00004569 <activity
4570 android:name="Settings$StylusUsiDetailsActivity"
4571 android:label="@string/stylus_device_details_title"
4572 android:exported="true">
4573 <intent-filter android:priority="1">
4574 <action android:name="com.android.settings.STYLUS_USI_DETAILS_SETTINGS" />
4575 <category android:name="android.intent.category.DEFAULT" />
4576 </intent-filter>
4577 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4578 android:value="com.android.settings.connecteddevice.stylus.StylusUsiDetailsFragment" />
4579 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4580 android:value="@string/menu_key_connected_devices"/>
4581 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4582 android:value="true" />
4583 </activity>
4584
Matt Fritze90899e02018-10-16 12:41:42 -07004585 <activity android:name=".panel.SettingsPanelActivity"
4586 android:label="@string/settings_panel_title"
lindatsenge972b162019-04-19 15:40:20 -07004587 android:theme="@style/Theme.Panel"
lindatseng2943c1d2019-05-02 17:12:27 -07004588 android:launchMode="singleInstance"
Matt Fritze90899e02018-10-16 12:41:42 -07004589 android:excludeFromRecents="true"
Tim Penge54e0292020-04-15 10:49:35 +08004590 android:configChanges="orientation|keyboardHidden|screenSize"
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004591 android:exported="true">
Matt Fritze90899e02018-10-16 12:41:42 -07004592 <intent-filter>
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004593 <action android:name="android.settings.panel.action.INTERNET_CONNECTIVITY" />
Matt Fritze90899e02018-10-16 12:41:42 -07004594 <category android:name="android.intent.category.DEFAULT" />
4595 </intent-filter>
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004596 <intent-filter>
Matthew Fritze63cce452019-03-05 08:17:37 -08004597 <action android:name="android.settings.panel.action.NFC" />
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004598 <category android:name="android.intent.category.DEFAULT" />
4599 </intent-filter>
Matthew Fritze3f743ae2019-01-22 15:53:37 -08004600 <intent-filter>
Matthew Fritze63cce452019-03-05 08:17:37 -08004601 <action android:name="android.settings.panel.action.WIFI" />
4602 <category android:name="android.intent.category.DEFAULT" />
4603 </intent-filter>
4604 <intent-filter>
4605 <action android:name="android.settings.panel.action.VOLUME" />
Matthew Fritze3f743ae2019-01-22 15:53:37 -08004606 <category android:name="android.intent.category.DEFAULT" />
4607 </intent-filter>
Matt Fritze90899e02018-10-16 12:41:42 -07004608 </activity>
4609
govenliud507b562019-11-21 09:36:58 +08004610 <activity android:name=".wifi.addappnetworks.AddAppNetworksActivity"
4611 android:label="@string/settings_panel_title"
4612 android:theme="@style/Theme.Panel"
4613 android:launchMode="singleInstance"
4614 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004615 android:exported="true"
Chaohui Wangdfd7f8f2023-04-26 12:28:51 +08004616 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout">
govenliud507b562019-11-21 09:36:58 +08004617 <intent-filter>
4618 <action android:name="android.settings.WIFI_ADD_NETWORKS" />
4619 <category android:name="android.intent.category.DEFAULT" />
4620 </intent-filter>
4621 </activity>
4622
Matthew Fritze7fddfeb2017-12-11 15:01:11 -08004623 <provider android:name=".slices.SettingsSliceProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004624 android:authorities="${applicationId}.slices;android.settings.slices"
Jason Monkf6edc7c2017-11-22 10:04:38 -05004625 android:exported="true"
Fan Zhang671a39f2019-02-11 14:38:13 -08004626 android:grantUriPermissions="true" />
Mady Mellor7c740852017-11-03 09:17:05 -07004627
4628 <receiver
Matthew Fritzee8d66bb2018-07-30 14:12:50 -07004629 android:name=".slices.SliceBroadcastReceiver"
Fan Zhang0c7c59f2018-10-26 13:40:38 -07004630 android:exported="false" />
Matthew Fritzee8d66bb2018-07-30 14:12:50 -07004631
4632 <receiver
4633 android:name=".slices.SliceRelayReceiver"
4634 android:permission="android.permission.MANAGE_SLICE_PERMISSIONS"
Fan Zhang0c7c59f2018-10-26 13:40:38 -07004635 android:exported="true" />
Mady Mellor7c740852017-11-03 09:17:05 -07004636
Jason Chiu2c7b77d2020-08-20 16:22:44 +08004637 <receiver
4638 android:name=".slices.VolumeSliceRelayReceiver"
4639 android:permission="android.permission.MANAGE_SLICE_PERMISSIONS"
4640 android:exported="true" />
4641
jackqdyulei821adce2018-01-29 19:20:37 -08004642 <!-- Couldn't be triggered from outside of settings. Statsd can trigger it because we send
4643 PendingIntent to it-->
4644 <receiver android:name=".fuelgauge.batterytip.AnomalyDetectionReceiver"
4645 android:exported="false" />
4646
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004647 <receiver android:name=".fuelgauge.batterytip.AnomalyConfigReceiver"
4648 android:exported="true">
jackqdyuleie1604d32018-01-31 20:24:47 -08004649 <intent-filter>
4650 <action android:name="android.app.action.STATSD_STARTED"/>
4651 <action android:name="android.intent.action.BOOT_COMPLETED"/>
4652 </intent-filter>
4653 </receiver>
4654
jackqdyulei0fa413e2018-02-23 10:59:27 -08004655 <service android:name=".fuelgauge.batterytip.AnomalyCleanupJobService"
jackqdyulei338ae2f2018-02-16 10:06:08 -08004656 android:permission="android.permission.BIND_JOB_SERVICE" />
4657
Lei Yu9a80d6e2018-03-15 15:55:07 -07004658 <service android:name=".fuelgauge.batterytip.AnomalyConfigJobService"
4659 android:permission="android.permission.BIND_JOB_SERVICE" />
4660
jackqdyulei3ee28c82018-02-20 15:07:26 -08004661 <service android:name=".fuelgauge.batterytip.AnomalyDetectionJobService"
4662 android:permission="android.permission.BIND_JOB_SERVICE" />
4663
Sunny Shao195f61b2018-07-24 18:15:55 +08004664 <provider
Fan Zhang5e6e6a12018-10-25 14:19:43 -07004665 android:name=".homepage.contextualcards.CardContentProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004666 android:authorities="${applicationId}.homepage.CardContentProvider"
Sunny Shao195f61b2018-07-24 18:15:55 +08004667 android:exported="true"
4668 android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA" />
4669
Raff Tsai3936e9f2018-09-28 17:42:43 +08004670 <provider
4671 android:name=".homepage.contextualcards.SettingsContextualCardProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004672 android:authorities="${applicationId}.homepage.contextualcards"
Raff Tsai3936e9f2018-09-28 17:42:43 +08004673 android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA"
4674 android:exported="true">
4675 <intent-filter>
4676 <action android:name="android.content.action.SETTINGS_HOMEPAGE_DATA"/>
4677 </intent-filter>
4678 </provider>
Arc Wang4591d822018-11-19 15:48:29 +08004679
4680 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004681 android:name=".wifi.dpp.WifiDppConfiguratorActivity"
4682 android:exported="true">
Arc Wange43bb772018-12-03 17:16:55 +08004683 <intent-filter>
4684 <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_SCANNER"/>
4685 <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_GENERATOR"/>
Arc Wange43bb772018-12-03 17:16:55 +08004686 <category android:name="android.intent.category.DEFAULT"/>
4687 </intent-filter>
Arc Wangc1036df2019-02-26 15:19:30 +08004688 <intent-filter>
4689 <action android:name="android.settings.PROCESS_WIFI_EASY_CONNECT_URI"/>
4690 <category android:name="android.intent.category.DEFAULT"/>
4691 <data android:scheme="DPP"/>
4692 </intent-filter>
Arc Wange43bb772018-12-03 17:16:55 +08004693 </activity>
Yi-Ling Chuang68f37a12018-11-20 19:51:13 +08004694
Arc Wang4ab0d162018-12-07 16:00:18 +08004695 <activity
chelseahao3ecc87b2023-08-10 13:29:52 +08004696 android:name=".wifi.dpp.WifiDppConfiguratorAuthActivity"
4697 android:theme="@style/Transparent"
4698 android:exported="true">
4699 <intent-filter>
4700 <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_AUTH_QR_CODE_GENERATOR"/>
4701 <category android:name="android.intent.category.DEFAULT"/>
4702 </intent-filter>
4703 </activity>
4704
4705 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004706 android:name=".wifi.dpp.WifiDppEnrolleeActivity"
4707 android:exported="true">
Arc Wang4ab0d162018-12-07 16:00:18 +08004708 <intent-filter>
4709 <action android:name="android.settings.WIFI_DPP_ENROLLEE_QR_CODE_SCANNER"/>
4710 <category android:name="android.intent.category.DEFAULT"/>
4711 </intent-filter>
4712 </activity>
4713
Yi-Ling Chuang68f37a12018-11-20 19:51:13 +08004714 <activity android:name=".homepage.contextualcards.ContextualCardFeedbackDialog"
4715 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
manabu, shimoda9fae7392017-11-08 11:32:31 +09004716
joshmccloskeybba76322019-09-19 11:23:29 -07004717 <activity android:name=".homepage.contextualcards.FaceReEnrollDialog"
4718 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
4719
manabu, shimoda9fae7392017-11-08 11:32:31 +09004720 <activity
4721 android:name="Settings$WifiCallingDisclaimerActivity"
4722 android:label="@string/wifi_calling_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004723 android:exported="true"
manabu, shimoda9fae7392017-11-08 11:32:31 +09004724 android:taskAffinity="com.android.settings">
4725 <intent-filter>
4726 <action android:name="android.intent.action.MAIN" />
4727 <category android:name="android.intent.category.DEFAULT" />
4728 </intent-filter>
4729 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4730 android:value="com.android.settings.wifi.calling.WifiCallingDisclaimerFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004731 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4732 android:value="@string/menu_key_network"/>
manabu, shimoda9fae7392017-11-08 11:32:31 +09004733 </activity>
Salvador Martinez32917042019-03-20 15:23:19 -07004734
4735 <activity android:name="Settings$BatterySaverScheduleSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004736 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004737 android:label="@string/battery_saver_schedule_settings_title">
Salvador Martinez32917042019-03-20 15:23:19 -07004738 <intent-filter>
4739 <action android:name="com.android.settings.BATTERY_SAVER_SCHEDULE_SETTINGS" />
4740 <category android:name="android.intent.category.DEFAULT" />
4741 </intent-filter>
4742 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4743 android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverScheduleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004744 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4745 android:value="@string/menu_key_battery"/>
Salvador Martinez32917042019-03-20 15:23:19 -07004746 </activity>
Steve Elliotte7721232019-05-22 14:13:29 -04004747
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004748 <activity android:name="Settings$PowerMenuSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004749 android:exported="true"
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004750 android:label="@string/power_menu_setting_name">
4751 <intent-filter>
4752 <action android:name="android.settings.ACTION_POWER_MENU_SETTINGS" />
4753 <category android:name="android.intent.category.DEFAULT" />
4754 </intent-filter>
4755 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4756 android:value="com.android.settings.gestures.PowerMenuSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004757 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4758 android:value="@string/menu_key_system"/>
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004759 </activity>
4760
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004761 <activity
4762 android:name="Settings$GestureNavigationSettingsActivity"
4763 android:label="@string/gesture_settings_activity_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004764 android:exported="true"
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004765 android:enabled="true">
4766 <intent-filter android:priority="32">
4767 <action android:name="android.intent.action.MAIN" />
4768 <category android:name="com.android.settings.SHORTCUT" />
4769 </intent-filter>
4770 <intent-filter android:priority="1">
4771 <action android:name="com.android.settings.GESTURE_NAVIGATION_SETTINGS" />
4772 <category android:name="android.intent.category.DEFAULT" />
4773 </intent-filter>
4774 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4775 android:value="com.android.settings.gestures.GestureNavigationSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004776 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4777 android:value="@string/menu_key_system"/>
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004778 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4779 android:value="true" />
4780 </activity>
4781
Jernej Virag97ea2792021-08-09 18:11:28 +00004782 <activity
4783 android:name="Settings$ButtonNavigationSettingsActivity"
Xuanang Zhao0cc01492022-11-02 13:55:21 +08004784 android:label="@string/button_navigation_settings_activity_title"
Jernej Virag97ea2792021-08-09 18:11:28 +00004785 android:exported="true"
4786 android:enabled="true">
4787 <intent-filter android:priority="32">
4788 <action android:name="android.intent.action.MAIN" />
4789 <category android:name="com.android.settings.SHORTCUT" />
4790 </intent-filter>
4791 <intent-filter android:priority="1">
4792 <action android:name="com.android.settings.BUTTON_NAVIGATION_SETTINGS" />
4793 <category android:name="android.intent.category.DEFAULT" />
4794 </intent-filter>
4795 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4796 android:value="com.android.settings.gestures.ButtonNavigationSettingsFragment" />
4797 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4798 android:value="true" />
4799 </activity>
4800
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004801 <activity android:name="Settings$MediaControlsSettingsActivity"
4802 android:exported="true"
bvineeth5b90dfa2021-11-16 06:44:41 +00004803 android:label="@string/media_controls_title">
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004804 <intent-filter>
4805 <action android:name="android.settings.ACTION_MEDIA_CONTROLS_SETTINGS" />
4806 <category android:name="android.intent.category.DEFAULT" />
4807 </intent-filter>
4808 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4809 android:value="com.android.settings.sound.MediaControlsSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004810 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4811 android:value="@string/menu_key_sound"/>
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004812 </activity>
4813
timhypengc3bd8012020-09-02 15:54:18 +08004814 <receiver
4815 android:name=".media.BluetoothPairingReceiver"
4816 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06004817 android:permission="android.permission.BLUETOOTH_CONNECT">
timhypengc3bd8012020-09-02 15:54:18 +08004818 <intent-filter>
4819 <action android:name="com.android.settings.action.LAUNCH_BLUETOOTH_PAIRING"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004820 </intent-filter>
timhypengc3bd8012020-09-02 15:54:18 +08004821 </receiver>
4822
Jiashen Wang610060c82020-07-12 20:44:47 -07004823 <receiver
4824 android:name=".sim.receivers.SimSlotChangeReceiver"
4825 android:exported="true">
4826 <intent-filter>
4827 <action android:name="android.telephony.action.SIM_SLOT_STATUS_CHANGED" />
4828 </intent-filter>
4829 </receiver>
4830
Bonian Chen3ac629f2022-12-14 04:18:20 +00004831 <service android:name=".sim.receivers.SimSlotChangeService"
4832 android:permission="android.permission.BIND_JOB_SERVICE" />
4833
Jiashen Wang7629de02020-11-24 19:03:33 -08004834 <receiver
4835 android:name=".sim.receivers.SimCompleteBootReceiver"
4836 android:exported="true">
4837 <intent-filter>
4838 <action android:name="android.intent.action.BOOT_COMPLETED"/>
4839 </intent-filter>
4840 </receiver>
4841
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004842 <activity
4843 android:name=".sim.ChooseSimActivity"
4844 android:theme="@style/GlifV3Theme.DayNight.NoActionBar"
4845 android:launchMode="singleInstance"
Bonian Chenf81eaeb2022-03-18 16:52:40 +08004846 android:excludeFromRecents="true"
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004847 android:exported="false"/>
4848
4849 <activity
4850 android:name=".sim.SwitchToEsimConfirmDialogActivity"
4851 android:exported="false"
4852 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
4853 android:launchMode="singleInstance"
SongFerngWang4780be42021-12-21 05:39:09 +08004854 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004855
4856 <activity
4857 android:name=".sim.DsdsDialogActivity"
4858 android:exported="false"
4859 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
4860 android:launchMode="singleInstance"
SongFerngWang4780be42021-12-21 05:39:09 +08004861 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004862
Jiashen Wang7629de02020-11-24 19:03:33 -08004863 <service android:name=".sim.SimNotificationService"
4864 android:permission="android.permission.BIND_JOB_SERVICE" />
4865
calvinpane077e392021-01-25 10:07:26 +08004866 <activity android:name=".sim.smartForwarding.SmartForwardingActivity"
calvinpane077e392021-01-25 10:07:26 +08004867 android:exported="true"
4868 android:launchMode="singleTask">
4869 </activity>
4870
Mill Chen00231002021-03-11 01:18:13 +08004871 <activity android:name="Settings$FactoryResetActivity"
Edgar Wangc8bbf832023-05-24 19:36:53 +08004872 android:permission="android.permission.MASTER_CLEAR"
Mill Chen00231002021-03-11 01:18:13 +08004873 android:label="@string/main_clear_title"
4874 android:exported="true"
4875 android:theme="@style/SudThemeGlif.Light">
4876 <intent-filter>
4877 <action android:name="com.android.settings.action.FACTORY_RESET"/>
4878 <category android:name="android.intent.category.DEFAULT"/>
4879 </intent-filter>
4880 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4881 android:value="com.android.settings.MainClear"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08004882 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4883 android:value="@string/menu_key_system"/>
Mill Chen00231002021-03-11 01:18:13 +08004884 </activity>
4885
4886 <activity android:name="Settings$FactoryResetConfirmActivity"
4887 android:label="@string/main_clear_confirm_title"
4888 android:exported="false"
4889 android:theme="@style/SudThemeGlif.Light">
4890 </activity>
4891
Jason Changd1cf05c2021-10-21 16:12:15 +08004892 <activity
4893 android:name="Settings$OneHandedSettingsActivity"
4894 android:label="@string/one_handed_title"
4895 android:exported="true"
4896 android:enabled="true">
4897 <intent-filter android:priority="1">
Jason Changcffaef12021-11-20 23:21:28 +08004898 <action android:name="android.settings.action.ONE_HANDED_SETTINGS" />
4899 <category android:name="android.intent.category.DEFAULT" />
4900 </intent-filter>
4901 <intent-filter android:priority="1">
Jason Changd1cf05c2021-10-21 16:12:15 +08004902 <action android:name="android.intent.action.MAIN" />
4903 <category android:name="com.android.settings.SHORTCUT" />
4904 </intent-filter>
4905 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4906 android:value="com.android.settings.gestures.OneHandedSettings"/>
4907 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4908 android:value="true" />
4909 </activity>
4910
Marie Matheson125a84f2022-02-02 19:14:00 +00004911 <receiver android:name=".safetycenter.SafetySourceBroadcastReceiver"
4912 android:exported="true">
4913 <intent-filter>
4914 <action android:name="android.safetycenter.action.REFRESH_SAFETY_SOURCES"/>
Marie Matheson1106faf2022-02-14 20:33:57 +00004915 <action android:name="android.intent.action.BOOT_COMPLETED"/>
Marie Matheson125a84f2022-02-02 19:14:00 +00004916 </intent-filter>
4917 </receiver>
4918
Zoey Chen4b345982022-05-12 11:27:40 +08004919 <activity
4920 android:name="com.android.settings.bluetooth.QrCodeScanModeActivity"
4921 android:permission="android.permission.BLUETOOTH_CONNECT"
4922 android:exported="true">
4923 <intent-filter>
4924 <action android:name="android.settings.BLUETOOTH_LE_AUDIO_QR_CODE_SCANNER"/>
4925 <category android:name="android.intent.category.DEFAULT"/>
4926 </intent-filter>
4927 </activity>
4928
Chaohui Wangf67f2ad2022-11-21 17:44:31 +08004929 <activity
4930 android:name=".spa.SpaActivity"
4931 android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize"
Viesturs Zarins8e33f2e2023-06-01 17:48:36 +02004932 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Chaohui Wangf67f2ad2022-11-21 17:44:31 +08004933 android:exported="false" />
Chaohui Wangd22619e2022-09-08 16:06:09 +08004934 <activity android:name=".spa.SpaBridgeActivity" android:exported="false"/>
Chaohui Wanga9c624b2022-12-23 16:48:40 +08004935 <activity android:name=".spa.SpaAppBridgeActivity" android:exported="false"/>
Chaohui Wangd22619e2022-09-08 16:06:09 +08004936
Joshua McCloskey9642d1e2023-04-13 19:58:26 +00004937 <activity android:name=".Settings$FingerprintSettingsActivityV2"
4938 android:label="@string/security_settings_fingerprint_preference_title"
4939 android:exported="false"
4940 android:icon="@drawable/ic_fingerprint_header">
4941 <intent-filter>
4942 <action android:name="android.settings.FINGERPRINT_SETTINGS_V2" />
4943 <category android:name="android.intent.category.DEFAULT" />
4944 </intent-filter>
4945 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Joshua McCloskey2e0244e2023-08-14 17:26:23 +00004946 android:value="com.android.settings.biometrics.fingerprint2.ui.settings.fragment.FingerprintSettingsV2Fragment" />
Joshua McCloskey9642d1e2023-04-13 19:58:26 +00004947 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4948 android:value="@string/menu_key_security"/>
4949 </activity>
4950
Chaohui Wangd22619e2022-09-08 16:06:09 +08004951 <activity-alias android:name="UsageStatsActivity"
4952 android:exported="true"
4953 android:label="@string/testing_usage_stats"
4954 android:targetActivity=".spa.SpaBridgeActivity">
4955 <intent-filter>
4956 <action android:name="android.intent.action.MAIN" />
4957 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
4958 </intent-filter>
4959 <meta-data android:name="com.android.settings.spa.DESTINATION"
4960 android:value="UsageStats"/>
4961 </activity-alias>
Chaohui Wang805f9032022-08-16 16:36:40 +08004962
Tsung-Mao Fangfa7394a2022-10-04 15:51:45 +08004963 <!-- [b/197780098] Disable eager initialization of Jetpack libraries. -->
4964 <provider
4965 android:name="androidx.startup.InitializationProvider"
4966 android:authorities="${applicationId}.androidx-startup"
4967 tools:node="remove" />
4968
Dan Sandler3bd52dd2016-03-24 10:24:27 -07004969 <!-- This is the longest AndroidManifest.xml ever. -->
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08004970 </application>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08004971</manifest>