blob: f9156cc8771068c16ed25b45587b2ea969c10c55 [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 Popa0e23c4d2023-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" />
Pawan Wagh905b78e2023-10-04 19:54:19 +0000100 <uses-permission android:name="android.permission.RECOVERY"/>
Kevin Chynb3ee2312018-10-04 15:01:43 -0700101 <uses-permission android:name="android.permission.USE_BIOMETRIC" />
102 <uses-permission android:name="android.permission.USE_BIOMETRIC_INTERNAL" />
Jorim Jaggi4a2423b2015-04-24 10:19:48 -0700103 <uses-permission android:name="android.permission.USER_ACTIVITY" />
Amith Yamasani50e32b02015-05-13 18:18:16 -0700104 <uses-permission android:name="android.permission.CHANGE_APP_IDLE_STATE" />
Fyodor Kupolov0938a632015-07-27 12:24:59 -0700105 <uses-permission android:name="android.permission.PEERS_MAC_ADDRESS"/>
Julia Reynoldsf02aa0c2015-09-28 08:57:03 -0400106 <uses-permission android:name="android.permission.MANAGE_NOTIFICATIONS"/>
Daniel Nishib84304d2016-04-11 14:08:44 -0700107 <uses-permission android:name="android.permission.DELETE_PACKAGES"/>
Philip P. Moltmanndd7441b2017-09-05 12:42:04 -0700108 <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
Phil Weaver2e2dbfe2017-05-30 10:41:52 -0700109 <uses-permission android:name="android.permission.MANAGE_APP_OPS_RESTRICTIONS"/>
Dianne Hackbornda3c0462018-03-07 16:42:39 -0800110 <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" />
Phil Weaver633c9be2017-07-05 10:02:38 -0700111 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Philip P. Moltmann5929b132017-06-19 10:55:31 -0700112 <uses-permission android:name="android.permission.READ_PRINT_SERVICES" />
Roshan Pius37a46a12017-07-24 15:05:36 -0700113 <uses-permission android:name="android.permission.NETWORK_SETTINGS" />
Alexandru-Andrei Rotaruaeb3e442017-08-07 12:21:31 +0100114 <uses-permission android:name="android.permission.TEST_BLACKLISTED_PASSWORD" />
Jeff Sharkeyd9403362018-01-05 17:14:37 -0700115 <uses-permission android:name="android.permission.USE_RESERVED_DISK" />
Felipe Lemea5bbad42018-02-14 13:15:19 -0800116 <uses-permission android:name="android.permission.MANAGE_SCOPED_ACCESS_DIRECTORY_PERMISSIONS" />
Kevin Chyn22b4edd2018-07-30 19:20:01 -0700117 <uses-permission android:name="android.permission.CAMERA" />
jackqdyuleif25c9b02019-02-27 10:05:56 -0800118 <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
PO HUNG CHENafc513e2019-12-10 04:11:21 +0000119 <uses-permission android:name="android.permission.INSTALL_DYNAMIC_SYSTEM" />
Jack Yuc4da22a2020-01-30 00:04:06 -0800120 <uses-permission android:name="android.permission.BIND_CELL_BROADCAST_SERVICE" />
Mehdi Alizadeh2552dff2020-06-11 21:06:00 -0700121 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
Edgar Wang39121792020-10-27 16:54:46 +0800122 <uses-permission android:name="android.permission.READ_DREAM_STATE" />
123 <uses-permission android:name="android.permission.READ_DREAM_SUPPRESSION" />
Zhen Zhang1f99d6a2021-03-22 00:49:49 -0700124 <uses-permission android:name="android.permission.MANAGE_APP_HIBERNATION" />
Arc Wang8b2dd652021-10-05 20:20:40 +0800125 <uses-permission android:name="android.permission.LAUNCH_MULTI_PANE_SETTINGS_DEEP_LINK" />
126 <uses-permission android:name="android.permission.ALLOW_PLACE_IN_MULTI_PANE_SETTINGS" />
Steve Elliott7bfcff32021-12-03 16:35:02 -0500127 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
tom hsu58244b12021-10-28 14:50:11 +0800128 <uses-permission android:name="android.permission.READ_APP_SPECIFIC_LOCALES" />
Pavel Grafov8d4e89b2021-12-16 14:34:06 +0000129 <uses-permission android:name="android.permission.QUERY_ADMIN_POLICY" />
Jan Tomljanovic9d2ec952022-01-17 12:21:59 +0000130 <uses-permission android:name="android.permission.READ_SAFETY_CENTER_STATUS" />
Marie Matheson6b9a1ff2022-01-25 18:48:22 +0000131 <uses-permission android:name="android.permission.SEND_SAFETY_CENTER_UPDATE" />
Pyuli Naithanid1408572022-01-12 23:08:02 +0000132 <uses-permission android:name="android.permission.START_VIEW_APP_FEATURES" />
Reema Bajwa5ba7d672022-12-20 22:09:15 +0000133 <uses-permission android:name="android.permission.LIST_ENABLED_CREDENTIAL_PROVIDERS" />
Alejandro Nijamkin6f775622022-12-24 08:08:02 -0800134 <uses-permission android:name="android.permission.CUSTOMIZE_SYSTEM_UI" />
danielwbhuangaa1d9c42022-12-30 21:31:24 +0800135 <uses-permission android:name="android.permission.REMAP_MODIFIER_KEYS" />
Yuxin Hu0927e2a2023-04-17 23:56:19 +0000136 <uses-permission android:name="android.permission.ACCESS_GPU_SERVICE" />
pihuei55fb2b72020-10-13 19:00:57 +0800137
Tsung-Mao Fang4781fc12021-09-06 02:41:26 +0000138 <application
139 android:name=".SettingsApplication"
140 android:label="@string/settings_label"
Hyunyoung Song1f093dd2017-02-14 10:40:58 -0800141 android:icon="@drawable/ic_launcher_settings"
Amith Yamasani56f51a82013-08-05 10:07:23 -0700142 android:theme="@style/Theme.Settings"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -0700143 android:hardwareAccelerated="true"
Amith Yamasani233592b2013-03-01 17:05:23 -0800144 android:requiredForAllUsers="true"
Fabrice Di Meglio66445562014-06-30 13:11:53 -0700145 android:supportsRtl="true"
Sunny Goyalae788a12019-04-24 17:11:24 -0700146 android:backupAgent="com.android.settings.backup.SettingsBackupHelper"
Jeff Sharkey3bd73ed2015-11-18 10:20:18 -0700147 android:usesCleartextTraffic="true"
Jeff Sharkeya806b7a2016-03-17 11:04:55 -0600148 android:defaultToDeviceProtectedStorage="true"
Jason Monk20210122018-04-03 18:36:42 -0400149 android:directBootAware="true"
Yi-Ling Chuang2a3337a2022-02-18 13:49:34 +0800150 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
kellyz1bda6422022-07-22 10:23:28 +0800151 android:gwpAsanMode="always"
152 android:enableOnBackInvokedCallback="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800153
Bonian Chene69d1a62021-01-06 05:41:46 +0000154 <uses-library android:name="org.apache.http.legacy" />
Tsung-Mao Fang18ad0c42021-08-17 18:28:06 +0800155
Arc Wangcf4ee7b2023-01-09 10:26:07 +0800156 <property
157 android:name="android.window.PROPERTY_ACTIVITY_EMBEDDING_SPLITS_ENABLED"
158 android:value="true" />
159
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800160 <!-- Settings -->
Fan Zhang44be9132018-09-07 12:56:53 -0700161 <activity android:name=".homepage.SettingsHomepageActivity"
Raff Tsai082f8ee2018-06-29 06:11:39 +0000162 android:label="@string/settings_label_launcher"
163 android:theme="@style/Theme.Settings.Home"
Sunny Shao0b0e6fc2019-06-18 13:32:05 +0800164 android:taskAffinity="com.android.settings.root"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700165 android:exported="true"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800166 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
Fan Zhang0c7c59f2018-10-26 13:40:38 -0700167 <intent-filter android:priority="1">
168 <action android:name="android.settings.SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800169 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhang0c7c59f2018-10-26 13:40:38 -0700170 <category android:name="android.intent.category.DEFAULT" />
171 </intent-filter>
172 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
173 android:value="true" />
Raff Tsai082f8ee2018-06-29 06:11:39 +0000174 </activity>
175
Jason Chiua3b21cf2021-11-16 18:20:19 +0800176 <!-- Activity for launching deep link page in 2-pane. -->
177 <activity android:name=".homepage.DeepLinkHomepageActivity"
178 android:label="@string/settings_label_launcher"
Jason Chiu177573c2021-12-02 14:26:24 +0800179 android:theme="@style/Theme.Settings.Home"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800180 android:launchMode="singleTask"
181 android:exported="true"
Tsung-Mao Fang3943de12021-12-08 20:23:13 +0800182 android:enabled="false"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800183 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000184 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800185 android:permission="android.permission.LAUNCH_MULTI_PANE_SETTINGS_DEEP_LINK">
186 <intent-filter>
187 <action android:name="android.settings.SETTINGS_EMBED_DEEP_LINK_ACTIVITY" />
188 <category android:name="android.intent.category.DEFAULT" />
189 </intent-filter>
190 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
191 android:value="true" />
192 </activity>
193
Jason Chiu177573c2021-12-02 14:26:24 +0800194 <activity android:name=".homepage.DeepLinkHomepageActivityInternal"
Arc Wanga63e9c62021-09-28 20:39:15 +0800195 android:label="@string/settings_label_launcher"
Jason Chiu177573c2021-12-02 14:26:24 +0800196 android:theme="@style/Theme.Settings.Home.NoAnimation"
Arc Wanga63e9c62021-09-28 20:39:15 +0800197 android:taskAffinity=""
198 android:launchMode="singleTask"
199 android:exported="false"
Jason Chiua3b21cf2021-11-16 18:20:19 +0800200 android:excludeFromRecents="true"
Jason Chiuae1c17b2022-06-13 13:58:17 +0800201 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
Arc Wanga63e9c62021-09-28 20:39:15 +0800202 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
203 android:value="true" />
jackqdyulei106ae1d2018-10-05 10:04:19 -0700204 </activity>
205
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100206 <!-- Alias for launcher activity only, as this belongs to each profile. -->
207 <activity-alias android:name="Settings"
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100208 android:label="@string/settings_label_launcher"
Sunny Shao0b0e6fc2019-06-18 13:32:05 +0800209 android:taskAffinity="com.android.settings.root"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700210 android:exported="true"
Fan Zhang44be9132018-09-07 12:56:53 -0700211 android:targetActivity=".homepage.SettingsHomepageActivity">
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100212 <intent-filter>
213 <action android:name="android.intent.action.MAIN" />
214 <category android:name="android.intent.category.DEFAULT" />
215 <category android:name="android.intent.category.LAUNCHER" />
216 </intent-filter>
Sunny Goyal5f179fc2016-06-15 12:36:50 -0700217 <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/>
Alexandra Gherghina05dec7f2014-09-05 11:42:51 +0100218 </activity-alias>
219
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700220 <receiver android:name=".SettingsInitialize"
221 android:exported="true">
Alexandra Gherghina89265a32014-07-17 20:29:34 +0100222 <intent-filter>
Alexandra Gherghinaf2e39f22014-08-18 13:16:17 +0100223 <action android:name="android.intent.action.USER_INITIALIZE"/>
Alexandra Gherghina51712242014-09-05 16:32:14 +0100224 <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/>
Alexandra Gherghina89265a32014-07-17 20:29:34 +0100225 </intent-filter>
226 </receiver>
227
Mill Chen14cfd2f2021-01-06 07:46:46 +0800228 <activity android:name=".SubSettings"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000229 android:exported="false"
230 android:theme="@style/Theme.SubSettings"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000231 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000232 android:taskAffinity="com.android.settings.root" />
Dianne Hackbornb7258182011-03-15 16:23:55 -0700233
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700234 <activity android:name=".Settings$CreateShortcutActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700235 android:exported="true"
Fan Zhang92f1e942017-01-21 10:07:26 -0800236 android:label="@string/settings_shortcut">
Dianne Hackborna54672f2009-06-24 12:45:09 -0700237 <intent-filter>
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700238 <action android:name="android.intent.action.CREATE_SHORTCUT" />
239 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborna54672f2009-06-24 12:45:09 -0700240 </intent-filter>
Fan Zhangf1f0f8b2018-06-22 10:40:07 -0700241 <meta-data
242 android:name="com.android.settings.FRAGMENT_CLASS"
243 android:value="com.android.settings.shortcut.CreateShortcut" />
Dianne Hackborna54672f2009-06-24 12:45:09 -0700244 </activity>
245
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800246 <!-- Wireless Controls -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800247 <activity
248 android:name=".Settings$NetworkDashboardActivity"
Doris Ling26208222017-03-03 11:28:05 -0800249 android:label="@string/network_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700250 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800251 android:icon="@drawable/ic_homepage_network">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800252 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800253 <action android:name="android.settings.WIRELESS_SETTINGS" />
254 <action android:name="android.settings.AIRPLANE_MODE_SETTINGS" />
Andrew Sappersteinc65ccd22019-04-25 10:31:37 -0700255 <action android:name="com.android.settings.sim.SIM_SUB_INFO_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800256 <category android:name="android.intent.category.BROWSABLE" />
Doris Ling26208222017-03-03 11:28:05 -0800257 <category android:name="android.intent.category.DEFAULT" />
258 </intent-filter>
259 <intent-filter>
260 <action android:name="android.intent.action.MAIN" />
261 <category android:name="android.intent.category.DEFAULT" />
262 <category android:name="android.intent.category.VOICE_LAUNCH" />
263 </intent-filter>
Doris Ling26208222017-03-03 11:28:05 -0800264 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
265 android:value="com.android.settings.network.NetworkDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800266 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
267 android:value="@string/menu_key_network"/>
Doris Ling26208222017-03-03 11:28:05 -0800268 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
269 android:value="true" />
270 </activity>
271
Zoey Chen6978a902021-12-14 18:42:37 +0800272 <activity
273 android:name=".Settings$MobileNetworkActivity"
274 android:label="@string/network_settings_title"
275 android:configChanges="orientation|screenSize|keyboardHidden"
Bonian Chend10618d2022-05-30 19:06:10 +0800276 android:launchMode="singleTop"
Zoey Chen6978a902021-12-14 18:42:37 +0800277 android:exported="true">
278 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
279 android:value="com.android.settings.network.telephony.MobileNetworkSettings"/>
Arc Wanga63e9c62021-09-28 20:39:15 +0800280 <intent-filter android:priority="1">
281 <!-- Displays the MobileNetworkActivity and opt-in dialog for capability discovery. -->
Bonian Chend10618d2022-05-30 19:06:10 +0800282 <!-- Please sync with a list created within MobileNetworkIntentConverter.java -->
283 <action android:name="android.intent.action.MAIN" />
Arc Wanga63e9c62021-09-28 20:39:15 +0800284 <action android:name="android.telephony.ims.action.SHOW_CAPABILITY_DISCOVERY_OPT_IN" />
285 <action android:name="android.settings.NETWORK_OPERATOR_SETTINGS" />
286 <action android:name="android.settings.DATA_ROAMING_SETTINGS" />
287 <action android:name="android.settings.MMS_MESSAGE_SETTING" />
Han Xub7d10772022-08-15 19:19:55 +0800288 <category android:name="android.intent.category.BROWSABLE" />
Arc Wanga63e9c62021-09-28 20:39:15 +0800289 <category android:name="android.intent.category.DEFAULT" />
290 </intent-filter>
291 </activity>
292
Antony Sargent94d97902019-03-26 09:50:22 -0700293 <activity android:name=".Settings$MobileNetworkListActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700294 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800295 android:label="@string/network_settings_title">
Antony Sargent94d97902019-03-26 09:50:22 -0700296 <intent-filter android:priority="1">
297 <action android:name="android.settings.MOBILE_NETWORK_LIST" />
Peter Wang93ce0682021-04-09 11:49:34 -0700298 <action android:name="android.settings.MANAGE_ALL_SIM_PROFILES_SETTINGS" />
Antony Sargent94d97902019-03-26 09:50:22 -0700299 <category android:name="android.intent.category.DEFAULT" />
300 </intent-filter>
301 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
302 android:value="com.android.settings.network.MobileNetworkListFragment"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800303 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
304 android:value="@string/menu_key_network"/>
Antony Sargent94d97902019-03-26 09:50:22 -0700305 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
306 android:value="true" />
307 </activity>
308
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800309 <activity
310 android:name=".Settings$ConnectedDeviceDashboardActivity"
Doris Ling26208222017-03-03 11:28:05 -0800311 android:label="@string/connected_devices_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700312 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800313 android:icon="@drawable/ic_homepage_connected_device">
Doris Ling26208222017-03-03 11:28:05 -0800314 <intent-filter android:priority="1">
jackqdyulei6dd7f2e2018-02-07 17:49:09 -0800315 <action android:name="android.settings.BLUETOOTH_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800316 <category android:name="android.intent.category.BROWSABLE" />
jackqdyulei6dd7f2e2018-02-07 17:49:09 -0800317 <category android:name="android.intent.category.DEFAULT" />
318 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700319 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Ling26208222017-03-03 11:28:05 -0800320 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800321 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Jason Chiu646a31e2021-11-10 11:56:00 +0800322 android:value="@string/menu_key_connected_devices"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100323 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
324 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700325 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800326
Barnaby Jamesc55ea152015-04-13 14:33:53 -0700327 <activity android:name="AirplaneModeVoiceActivity"
328 android:label="@string/wireless_networks_settings_title"
Andrew Sapperstein7e157432016-07-15 16:46:38 -0700329 android:theme="@*android:style/Theme.DeviceDefault.Light.Voice"
Barnaby Jamesc55ea152015-04-13 14:33:53 -0700330 android:exported="true">
331 <intent-filter>
332 <action android:name="android.settings.VOICE_CONTROL_AIRPLANE_MODE" />
333 <category android:name="android.intent.category.DEFAULT" />
334 <category android:name="android.intent.category.VOICE" />
335 </intent-filter>
336 </activity>
337
Fan Zhang25f29bf2017-10-24 09:27:02 -0700338 <activity android:name=".search.SearchResultTrampoline"
339 android:theme="@android:style/Theme.NoDisplay"
340 android:excludeFromRecents="true"
Alexander Milantevc413b3e2023-03-14 16:11:30 +0000341 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang25f29bf2017-10-24 09:27:02 -0700342 android:exported="true">
Fan Zhang8068fda2017-11-09 16:37:01 -0800343 <intent-filter>
344 <action android:name="com.android.settings.SEARCH_RESULT_TRAMPOLINE" />
345 <category android:name="android.intent.category.DEFAULT" />
346 </intent-filter>
Fan Zhang25f29bf2017-10-24 09:27:02 -0700347 </activity>
348
Jason Chiu3af73362021-11-11 14:24:37 +0800349 <receiver android:name=".search.SearchStateReceiver"
350 android:exported="true"
Tsung-Mao Fang3943de12021-12-08 20:23:13 +0800351 android:enabled="false"
Jason Chiu3af73362021-11-11 14:24:37 +0800352 android:permission="android.permission.READ_SEARCH_INDEXABLES">
353 <intent-filter>
354 <action android:name="com.android.settings.SEARCH_START"/>
355 <action android:name="com.android.settings.SEARCH_EXIT"/>
356 </intent-filter>
357 </receiver>
358
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800359 <activity
Florian Mayerce174932022-11-07 17:27:52 -0800360 android:name="Settings$MemtagPageActivity"
361 android:label="@string/memtag_title"
362 android:icon="@drawable/ic_homepage_security"
363 android:exported="true"
364 android:configChanges="orientation|keyboardHidden|screenSize">
365 <intent-filter android:priority="1">
Florian Mayeref5e8672022-11-17 16:46:05 -0800366 <action android:name="android.settings.ADVANCED_MEMORY_PROTECTION_SETTINGS"/>
Florian Mayerce174932022-11-07 17:27:52 -0800367 <category android:name="android.intent.category.BROWSABLE" />
368 <category android:name="android.intent.category.DEFAULT"/>
369 </intent-filter>
370 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
371 android:value="com.android.settings.security.MemtagPage"/>
372 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
373 android:value="@string/menu_key_security"/>
374 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
375 android:value="true"/>
376 </activity>
377
378 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800379 android:name="Settings$WifiSettingsActivity"
380 android:label="@string/wifi_settings"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800381 android:icon="@drawable/ic_homepage_network"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700382 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800383 android:configChanges="orientation|keyboardHidden|screenSize">
Weng Sueb70b242021-11-12 22:50:12 +0800384 <intent-filter android:priority="1">
385 <action android:name="android.settings.WIFI_SETTINGS"/>
Han Xub7d10772022-08-15 19:19:55 +0800386 <category android:name="android.intent.category.BROWSABLE" />
Weng Sueb70b242021-11-12 22:50:12 +0800387 <category android:name="android.intent.category.DEFAULT"/>
388 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700389 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800390 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800391 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800392 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100393 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sueb70b242021-11-12 22:50:12 +0800394 android:value="true"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700395 </activity>
Chia-chi Yeh48090d42010-01-25 15:41:42 +0800396
David Magno6031a6e2021-10-07 14:40:31 +0200397 <!-- Keep compatibility with old shortcuts. -->
398 <activity-alias
399 android:name="Settings$WifiSettings2Activity"
400 android:targetActivity="Settings$WifiSettingsActivity"
401 android:label="@string/wifi_settings"
402 android:icon="@drawable/ic_homepage_network"
403 android:exported="true">
404 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800405 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800406 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800407 android:value="@string/menu_key_network"/>
408 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
409 android:value="true"/>
David Magno6031a6e2021-10-07 14:40:31 +0200410 </activity-alias>
411
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800412 <activity
Arc Wang746176e2020-09-02 17:35:56 +0800413 android:name="Settings$NetworkProviderSettingsActivity"
Weng Su658a4172021-07-26 16:33:31 +0800414 android:label="@string/provider_internet_settings"
Arc Wang746176e2020-09-02 17:35:56 +0800415 android:icon="@drawable/ic_homepage_network"
416 android:exported="true"
417 android:configChanges="orientation|keyboardHidden|screenSize">
418 <intent-filter android:priority="1">
Weng Sueb70b242021-11-12 22:50:12 +0800419 <action android:name="android.settings.NETWORK_PROVIDER_SETTINGS"/>
420 <category android:name="android.intent.category.DEFAULT"/>
Arc Wang746176e2020-09-02 17:35:56 +0800421 </intent-filter>
422 <intent-filter android:priority="1">
Weng Sueb70b242021-11-12 22:50:12 +0800423 <action android:name="android.intent.action.MAIN"/>
424 <category android:name="com.android.settings.SHORTCUT"/>
Arc Wang746176e2020-09-02 17:35:56 +0800425 </intent-filter>
426 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Sueb70b242021-11-12 22:50:12 +0800427 android:value="com.android.settings.network.NetworkProviderSettings"/>
Jason Chiu29a09e52021-10-12 17:24:34 +0800428 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
Weng Sueb70b242021-11-12 22:50:12 +0800429 android:value="@string/menu_key_network"/>
Arc Wang746176e2020-09-02 17:35:56 +0800430 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sueb70b242021-11-12 22:50:12 +0800431 android:value="true"/>
Arc Wang746176e2020-09-02 17:35:56 +0800432 </activity>
433
434 <activity
SongFerng Wangfa6a3612021-12-08 14:25:41 +0000435 android:name="Settings$NetworkSelectActivity"
436 android:label="@string/choose_network_title"
437 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|smallestScreenSize">
438 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
439 android:value="com.android.settings.network.telephony.NetworkSelectSettings" />
440 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
441 android:value="true" />
442 </activity>
443
444 <activity
Weng Sue8a4e132021-07-15 11:38:38 +0800445 android:name="Settings$WifiDetailsSettingsActivity"
446 android:label="@string/wifi_details_title"
447 android:icon="@drawable/ic_homepage_network"
448 android:exported="true"
449 android:permission="android.permission.CHANGE_WIFI_STATE"
450 android:configChanges="orientation|keyboardHidden|screenSize">
451 <!-- The intent action is only public to OEM, because a special library is required. -->
452 <intent-filter android:priority="1">
453 <action android:name="android.settings.WIFI_DETAILS_SETTINGS" />
454 <category android:name="android.intent.category.DEFAULT" />
455 </intent-filter>
456 <meta-data
457 android:name="com.android.settings.FRAGMENT_CLASS"
458 android:value="com.android.settings.wifi.details.WifiNetworkDetailsFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800459 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
460 android:value="@string/menu_key_network"/>
461 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Weng Sue8a4e132021-07-15 11:38:38 +0800462 android:value="true" />
463 </activity>
464
465 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700466 android:name=".wifi.WifiPickerActivity"
Weng Su79c30c02022-01-25 21:22:20 +0800467 android:permission="android.permission.CHANGE_WIFI_STATE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700468 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800469 <intent-filter android:priority="1">
470 <action android:name="android.net.wifi.PICK_WIFI_NETWORK" />
471 <category android:name="android.intent.category.DEFAULT" />
472 </intent-filter>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100473 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
474 android:value="true" />
Daisuke Miyakawa79c5fd92011-01-15 14:58:00 -0800475 </activity>
476
Jun Ono89c2c5e2019-05-30 12:56:43 +0900477 <activity android:name=".Settings$AdaptiveBrightnessActivity"
478 android:label="@string/auto_brightness_title"
479 android:exported="true">
480 <intent-filter>
481 <action android:name="android.settings.ADAPTIVE_BRIGHTNESS_SETTINGS" />
482 <category android:name="android.intent.category.DEFAULT" />
483 </intent-filter>
484 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
485 android:value="com.android.settings.display.AutoBrightnessSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800486 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
487 android:value="@string/menu_key_display"/>
Jun Ono89c2c5e2019-05-30 12:56:43 +0900488 </activity>
489
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800490 <activity
491 android:name="Settings$ConfigureWifiSettingsActivity"
492 android:label="@string/wifi_configure_settings_preference_title"
493 android:icon="@drawable/ic_settings_wireless"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700494 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800495 android:configChanges="orientation|keyboardHidden|screenSize">
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800496 <intent-filter android:priority="1">
Stephen Chen91d13c12017-03-22 15:53:26 -0700497 <action android:name="android.settings.WIFI_IP_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800498 <category android:name="android.intent.category.BROWSABLE" />
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800499 <category android:name="android.intent.category.DEFAULT" />
500 </intent-filter>
501 <intent-filter>
502 <action android:name="android.intent.action.MAIN" />
503 <category android:name="android.intent.category.VOICE_LAUNCH" />
504 <category android:name="android.intent.category.DEFAULT" />
505 </intent-filter>
506 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
507 android:value="com.android.settings.wifi.ConfigureWifiSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800508 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
509 android:value="@string/menu_key_network"/>
Amin Shaikh3aa547b2017-01-06 18:31:41 -0800510 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
511 android:value="true" />
512 </activity>
513
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800514 <activity
515 android:name="Settings$SavedAccessPointsSettingsActivity"
516 android:label="@string/wifi_saved_access_points_label"
517 android:icon="@drawable/ic_settings_wireless"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700518 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800519 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800520 <intent-filter android:priority="1">
Stephen Chen66d1a692016-11-14 16:24:08 -0800521 <action android:name="android.settings.WIFI_SAVED_NETWORK_SETTINGS" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800522 <category android:name="android.intent.category.DEFAULT" />
523 </intent-filter>
PauloftheWest7837b992014-06-24 07:42:27 -0700524 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Viesturs Zarinsf1d115c2022-09-28 15:06:18 +0000525 android:value="com.android.settings.wifi.savedaccesspoints2.SavedAccessPointsWifiSettings2" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800526 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
527 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100528 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
529 android:value="true" />
PauloftheWest7837b992014-06-24 07:42:27 -0700530 </activity>
531
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700532 <activity android:name=".Settings$WifiInfoActivity"
533 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800534 <intent-filter>
535 <action android:name="android.intent.action.MAIN"/>
536 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
537 <category android:name="android.intent.category.DEFAULT" />
538 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -0400539 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
540 android:value="com.android.settings.wifi.WifiInfo" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800541 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
542 android:value="@string/menu_key_network"/>
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800543 </activity>
544
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700545 <activity android:name=".wifi.WifiConfigInfo"
546 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800547 <intent-filter>
548 <action android:name="android.intent.action.MAIN"/>
549 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
550 <category android:name="android.intent.category.DEFAULT" />
551 </intent-filter>
552 </activity>
553
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700554 <activity android:name=".Settings$WifiAPITestActivity"
555 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800556 <intent-filter>
557 <action android:name="android.intent.action.MAIN"/>
558 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
559 <category android:name="android.intent.category.DEFAULT" />
560 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -0400561 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
562 android:value="com.android.settings.wifi.WifiAPITest" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800563 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
564 android:value="@string/menu_key_network"/>
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800565 </activity>
566
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700567 <activity android:name=".wifi.WifiStatusTest"
568 android:exported="true">
Irfan Sheriff2ff62e22009-12-03 10:53:50 -0800569 <intent-filter>
570 <action android:name="android.intent.action.MAIN"/>
571 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
572 <category android:name="android.intent.category.DEFAULT" />
573 </intent-filter>
574 </activity>
575
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900576 <activity android:name=".wifi.WifiNoInternetDialog"
577 android:clearTaskOnLaunch="true"
578 android:excludeFromRecents="true"
579 android:exported="true"
lucaslin7335c592019-03-20 11:41:21 +0800580 android:permission="android.permission.NETWORK_STACK"
Arc Wang5a298fb2020-06-30 14:14:02 +0800581 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
lucaslinaaf21232021-02-22 10:37:16 +0800582 <!-- TODO: Consider removing below two intent filters.
583 It seems like below two intent filters can be removed because when the notification
584 is clicked, this activity will be launched anyway. -->
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900585 <intent-filter>
lucaslinaaf21232021-02-22 10:37:16 +0800586 <action android:name="android.net.action.PROMPT_UNVALIDATED" />
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900587 <category android:name="android.intent.category.DEFAULT" />
588 </intent-filter>
Lorenzo Colitti1449ecd2016-09-15 14:06:46 +0900589 <intent-filter>
lucaslinaaf21232021-02-22 10:37:16 +0800590 <action android:name="android.net.action.PROMPT_LOST_VALIDATION" />
Lorenzo Colitti1449ecd2016-09-15 14:06:46 +0900591 <category android:name="android.intent.category.DEFAULT" />
592 </intent-filter>
Zoltan Szatmary-Bane03d8862015-04-30 14:35:54 +0100593 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
594 android:value="true" />
Lorenzo Colitti877b0542015-04-03 17:31:19 +0900595 </activity>
596
Fabrice Di Meglio61a1fec2014-08-13 16:22:38 -0700597 <activity android:name="Settings$ApnSettingsActivity"
Jeff Sharkeyc2b43db2012-11-28 17:09:19 -0800598 android:label="@string/apn_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700599 android:exported="true"
Bonian Chencd1fd102020-02-10 02:38:25 +0800600 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800601 <intent-filter android:priority="1">
602 <action android:name="android.settings.APN_SETTINGS" />
603 <category android:name="android.intent.category.DEFAULT" />
604 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800605 <intent-filter>
606 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800607 <category android:name="android.intent.category.DEFAULT" />
608 <category android:name="android.intent.category.VOICE_LAUNCH" />
609 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100610 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
611 android:value="true" />
Fabrice Di Meglio61a1fec2014-08-13 16:22:38 -0700612 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
tom hsu2fd7c9f2020-09-30 21:46:27 +0800613 android:value="com.android.settings.network.apn.ApnSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800614 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
615 android:value="@string/menu_key_network"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800616 </activity>
617
Lei Yudec7a712018-03-29 10:54:22 -0700618 <!-- Keep compatibility with old shortcuts. -->
619 <activity-alias
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800620 android:name="Settings$BluetoothSettingsActivity"
Lei Yudec7a712018-03-29 10:54:22 -0700621 android:label="@string/devices_title"
622 android:targetActivity=".Settings$ConnectedDeviceDashboardActivity"
623 android:exported="true">
Fan Zhang5a981772018-06-22 14:30:09 -0700624 <intent-filter android:priority="10">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800625 <action android:name="android.intent.action.MAIN" />
Lei Yudec7a712018-03-29 10:54:22 -0700626 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800627 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700628 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lei Yudec7a712018-03-29 10:54:22 -0700629 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800630 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
631 android:value="@string/menu_key_connected_devices"/>
Lei Yudec7a712018-03-29 10:54:22 -0700632 </activity-alias>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800633
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800634 <!-- Keep compatibility with old shortcuts. -->
635 <activity-alias android:name=".bluetooth.BluetoothSettings"
Lei Yudec7a712018-03-29 10:54:22 -0700636 android:label="@string/devices_title"
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800637 android:targetActivity="Settings$BluetoothSettingsActivity"
638 android:exported="true"
639 android:clearTaskOnLaunch="true">
640 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lei Yudec7a712018-03-29 10:54:22 -0700641 android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800642 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
643 android:value="@string/menu_key_connected_devices"/>
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800644 </activity-alias>
645
Kevin Chyn41acc692017-06-17 17:25:21 -0700646 <activity android:name="Settings$AssistGestureSettingsActivity"
647 android:label="@string/assist_gesture_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700648 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800649 android:icon="@drawable/ic_settings_gestures">
Kevin Chyn41acc692017-06-17 17:25:21 -0700650 <intent-filter>
651 <action android:name="android.settings.ASSIST_GESTURE_SETTINGS" />
652 <category android:name="android.intent.category.DEFAULT" />
653 </intent-filter>
654 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
655 android:value="com.android.settings.gestures.AssistGestureSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800656 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
657 android:value="@string/menu_key_system"/>
Kevin Chyn41acc692017-06-17 17:25:21 -0700658 </activity>
659
Kevin Chyn71899972018-07-10 17:20:29 -0700660 <activity android:name="Settings$FaceSettingsActivity"
661 android:label="@string/security_settings_face_preference_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700662 android:exported="true"
Jason Changf0fccc22023-08-03 08:38:44 +0000663 android:theme="@style/Theme.Settings.NoActionBar"
Kevin Chyn71899972018-07-10 17:20:29 -0700664 android:icon="@drawable/ic_face_header">
665 <intent-filter>
666 <action android:name="android.settings.FACE_SETTINGS" />
667 <category android:name="android.intent.category.DEFAULT" />
668 </intent-filter>
669 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
670 android:value="com.android.settings.biometrics.face.FaceSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800671 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
672 android:value="@string/menu_key_security"/>
Kevin Chyn71899972018-07-10 17:20:29 -0700673 </activity>
674
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000675 <activity android:name="Settings$FaceSettingsInternalActivity"
676 android:label="@string/security_settings_face_preference_title"
677 android:exported="false"
Jason Changf0fccc22023-08-03 08:38:44 +0000678 android:theme="@style/Theme.Settings.NoActionBar"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000679 android:icon="@drawable/ic_face_header"
680 android:taskAffinity="com.android.settings.root">
681 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
682 android:value="com.android.settings.biometrics.face.FaceSettings" />
683 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
684 android:value="@string/menu_key_security"/>
685 </activity>
686
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700687 <activity android:name="Settings$FingerprintSettingsActivity"
688 android:label="@string/security_settings_fingerprint_preference_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700689 android:exported="true"
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700690 android:icon="@drawable/ic_fingerprint_header">
691 <intent-filter>
692 <action android:name="android.settings.FINGERPRINT_SETTINGS" />
693 <category android:name="android.intent.category.DEFAULT" />
694 </intent-filter>
695 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
696 android:value="com.android.settings.biometrics.fingerprint.FingerprintSettings$FingerprintSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800697 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
698 android:value="@string/menu_key_security"/>
Ilya Matyukhin8979f842019-04-28 15:10:02 -0700699 </activity>
700
Mill Chen7edebee2021-04-09 23:14:27 +0800701 <activity android:name="Settings$CombinedBiometricSettingsActivity"
702 android:label="@string/security_settings_biometric_preference_title"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +0000703 android:exported="false"
704 android:taskAffinity="com.android.settings.root">
Mill Chen7edebee2021-04-09 23:14:27 +0800705 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
706 android:value="com.android.settings.biometrics.combination.CombinedBiometricSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800707 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
708 android:value="@string/menu_key_security"/>
Mill Chen7edebee2021-04-09 23:14:27 +0800709 </activity>
710
711 <activity android:name="Settings$CombinedBiometricProfileSettingsActivity"
Elliot Sisteronbc3d8da2023-04-06 13:51:00 +0000712 android:label="@string/security_settings_work_biometric_preference_title"
Mill Chen7edebee2021-04-09 23:14:27 +0800713 android:exported="false">
714 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
715 android:value="com.android.settings.biometrics.combination.CombinedBiometricProfileSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800716 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
717 android:value="@string/menu_key_security"/>
Mill Chen7edebee2021-04-09 23:14:27 +0800718 </activity>
719
Jake Hambyc090feb2010-12-07 16:27:21 -0800720 <activity android:name=".bluetooth.DevicePickerActivity"
Jake Hambyc090feb2010-12-07 16:27:21 -0800721 android:label="@string/device_picker"
Hemant Gupta3483fc32018-02-01 19:20:29 +0530722 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700723 android:exported="true"
Adam Powelld8537a02012-07-18 19:02:39 -0700724 android:clearTaskOnLaunch="true">
Jake Hambyc090feb2010-12-07 16:27:21 -0800725 <intent-filter>
726 <action android:name="android.bluetooth.devicepicker.action.LAUNCH" />
727 <category android:name="android.intent.category.DEFAULT" />
728 </intent-filter>
729 </activity>
730
Doris Lingc6927582018-01-18 15:04:59 -0800731 <service android:name=".wifi.tether.TetherService"
Jason Monk37832d62014-12-10 17:21:51 -0500732 android:exported="true"
Jeremy Klein78d182f2015-12-28 15:39:39 -0800733 android:permission="android.permission.TETHER_PRIVILEGED" />
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800734
markchien8c713fc2019-02-14 11:11:31 +0800735 <activity android:name=".network.TetherProvisioningActivity"
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800736 android:exported="true"
737 android:permission="android.permission.TETHER_PRIVILEGED"
Jeremy Klein7dbad8c2016-12-19 11:22:38 -0800738 android:excludeFromRecents="true"
Jeremy Kleine3e7b952016-01-25 14:43:49 -0800739 android:theme="@style/Theme.ProvisioningActivity">
Jeremy Klein1cf002d2016-01-24 17:21:43 -0800740 <intent-filter android:priority="1">
741 <action android:name="android.settings.TETHER_PROVISIONING_UI" />
742 <category android:name="android.intent.category.DEFAULT" />
743 </intent-filter>
744 </activity>
745
tom hsu427906c2022-02-14 22:12:43 +0800746 <activity
747 android:name=".network.TetherProvisioningCarrierDialogActivity"
748 android:exported="true"
749 android:permission="android.permission.TETHER_PRIVILEGED"
750 android:excludeFromRecents="true"
751 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar">
752 <intent-filter android:priority="1">
753 <action android:name="android.settings.TETHER_UNSUPPORTED_CARRIER_UI" />
754 <category android:name="android.intent.category.DEFAULT" />
755 </intent-filter>
756 </activity>
757
Jiashen Wangd8bd3bb2020-09-08 15:57:40 -0700758 <activity android:name=".network.telephony.ToggleSubscriptionDialogActivity"
759 android:exported="false"
760 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
SongFerngWang4780be42021-12-21 05:39:09 +0800761 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangd8bd3bb2020-09-08 15:57:40 -0700762
Jiashen Wangff311a22020-10-01 18:36:20 -0700763 <activity android:name=".network.telephony.DeleteEuiccSubscriptionDialogActivity"
764 android:exported="false"
765 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
SongFerngWang4780be42021-12-21 05:39:09 +0800766 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangff311a22020-10-01 18:36:20 -0700767
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800768 <activity
769 android:name="Settings$TetherSettingsActivity"
770 android:label="@string/tether_settings_title_all"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700771 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +0800772 android:icon="@drawable/ic_homepage_network">
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800773 <intent-filter>
774 <action android:name="android.intent.action.MAIN" />
paulhu08efd362020-02-07 14:42:08 +0800775 <action android:name="android.settings.TETHER_SETTINGS" />
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800776 <category android:name="android.intent.category.DEFAULT" />
777 <category android:name="android.intent.category.VOICE_LAUNCH" />
778 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700779 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Suf077b832022-12-22 20:24:34 +0800780 android:value="com.android.settings.network.tether.TetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800781 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
782 android:value="@string/menu_key_network"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700783 </activity>
Robert Greenwalt3901edb2010-01-26 10:22:37 -0800784
Salvador Martinezbb333712018-06-19 10:27:30 -0700785 <activity
786 android:name="Settings$WifiTetherSettingsActivity"
787 android:label="@string/wifi_hotspot_checkbox_text"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700788 android:exported="true"
Bonian Chen86027472022-03-18 09:23:19 +0800789 android:icon="@drawable/ic_homepage_wifi_tethering">
Salvador Martinezbb333712018-06-19 10:27:30 -0700790 <intent-filter>
791 <action android:name="com.android.settings.WIFI_TETHER_SETTINGS" />
792 <category android:name="android.intent.category.DEFAULT" />
793 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -0700794 <intent-filter android:priority="4">
Fan Zhang2f4355a2018-06-21 15:34:43 -0700795 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -0700796 <category android:name="com.android.settings.SHORTCUT" />
797 </intent-filter>
Salvador Martinezbb333712018-06-19 10:27:30 -0700798 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
799 android:value="com.android.settings.wifi.tether.WifiTetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800800 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
801 android:value="@string/menu_key_network"/>
Salvador Martinezbb333712018-06-19 10:27:30 -0700802 </activity>
803
804
Amith Yamasanieb99f2f2010-12-15 14:12:43 -0800805 <!-- Keep compatibility with old shortcuts. -->
806 <activity-alias android:name=".TetherSettings"
807 android:label="@string/tether_settings_title_all"
808 android:clearTaskOnLaunch="true"
809 android:exported="true"
810 android:targetActivity="Settings$TetherSettingsActivity">
811 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Weng Suf077b832022-12-22 20:24:34 +0800812 android:value="com.android.settings.network.tether.TetherSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800813 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
814 android:value="@string/menu_key_network"/>
Amith Yamasanieb99f2f2010-12-15 14:12:43 -0800815 </activity-alias>
816
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700817 <activity android:name="Settings$WifiP2pSettingsActivity"
818 android:exported="true">
repo syncb98463f2011-06-30 10:58:43 -0700819 <intent-filter>
820 <action android:name="android.intent.action.MAIN" />
821 <category android:name="android.intent.category.DEFAULT" />
822 <category android:name="android.intent.category.VOICE_LAUNCH" />
823 </intent-filter>
824 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Irfan Sheriff9ef53572011-08-03 15:40:04 -0700825 android:value="com.android.settings.wifi.p2p.WifiP2pSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800826 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
827 android:value="@string/menu_key_network"/>
repo syncb98463f2011-06-30 10:58:43 -0700828 </activity>
829
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800830 <activity
831 android:name="Settings$VpnSettingsActivity"
832 android:label="@string/vpn_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700833 android:exported="true"
Bonian Chen86027472022-03-18 09:23:19 +0800834 android:icon="@drawable/ic_homepage_vpn">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800835 <intent-filter android:priority="1">
Robin Leed3041942016-03-24 16:02:08 +0000836 <action android:name="android.settings.VPN_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800837 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800838 <action android:name="android.net.vpn.SETTINGS" />
839 <category android:name="android.intent.category.DEFAULT" />
840 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -0700841 <intent-filter android:priority="5">
Hung-ying Tyan16177062009-06-10 22:52:44 +0800842 <action android:name="android.intent.action.MAIN" />
Tobias Brunnerf7ed8572010-06-28 13:10:26 +0200843 <category android:name="com.android.settings.SHORTCUT" />
Hung-ying Tyan16177062009-06-10 22:52:44 +0800844 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700845 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Chia-chi Yeh7606a2f2011-07-02 17:45:23 -0700846 android:value="com.android.settings.vpn2.VpnSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800847 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
848 android:value="@string/menu_key_network"/>
Zoltan Szatmary-Ban131b4972014-08-18 13:48:15 +0100849 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
850 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700851 </activity>
Hung-ying Tyan16177062009-06-10 22:52:44 +0800852
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800853 <activity
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400854 android:name="Settings$DataSaverSummaryActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700855 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800856 android:label="@string/data_saver_title">
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400857 <intent-filter android:priority="1">
858 <action android:name="android.settings.DATA_SAVER_SETTINGS" />
859 <category android:name="android.intent.category.DEFAULT" />
860 </intent-filter>
861 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
862 android:value="com.android.settings.datausage.DataSaverSummary" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800863 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
864 android:value="@string/menu_key_network"/>
Fabian Kozynskid9aadd72019-04-11 12:25:09 -0400865 </activity>
866
867 <activity
Varun Shahb33256a2022-10-30 18:33:52 +0000868 android:name="Settings$LongBackgroundTasksActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +0200869 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Varun Shahb33256a2022-10-30 18:33:52 +0000870 android:exported="true"
871 android:label="@string/long_background_tasks_label">
872 <intent-filter android:priority="1">
Jing Ji50490a32023-01-06 02:10:42 -0800873 <action android:name="android.settings.MANAGE_APP_LONG_RUNNING_JOBS" />
Varun Shahb33256a2022-10-30 18:33:52 +0000874 <category android:name="android.intent.category.DEFAULT" />
875 </intent-filter>
876 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
877 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
878 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
879 android:value="@string/menu_key_apps"/>
880 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
881 android:value="true" />
882 </activity>
883
884 <activity
885 android:name="Settings$LongBackgroundTasksAppActivity"
886 android:exported="true"
887 android:label="@string/long_background_tasks_label">
888 <intent-filter android:priority="1">
Jing Ji50490a32023-01-06 02:10:42 -0800889 <action android:name="android.settings.MANAGE_APP_LONG_RUNNING_JOBS" />
Varun Shahb33256a2022-10-30 18:33:52 +0000890 <category android:name="android.intent.category.DEFAULT" />
891 <data android:scheme="package" />
892 </intent-filter>
893 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
894 android:value="com.android.settings.applications.appinfo.LongBackgroundTasksDetails" />
895 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
896 android:value="@string/menu_key_apps"/>
897 </activity>
898
899 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800900 android:name="Settings$DateTimeSettingsActivity"
901 android:label="@string/date_and_time"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700902 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800903 android:icon="@drawable/ic_settings_date_time">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800904 <intent-filter android:priority="1">
905 <action android:name="android.settings.DATE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800906 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800907 <category android:name="android.intent.category.DEFAULT" />
908 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800909 <intent-filter>
910 <action android:name="android.intent.action.MAIN" />
Daniel Sandlerf4d1c3e2012-10-01 16:45:10 -0400911 <action android:name="android.intent.action.QUICK_CLOCK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800912 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackborn116d85e2009-06-26 18:20:23 -0700913 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800914 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700915 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +0800916 android:value="com.android.settings.datetime.DateTimeSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +0800917 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
918 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100919 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
920 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700921 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800922
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800923 <activity
924 android:name="Settings$LocalePickerActivity"
925 android:label="@string/language_picker_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700926 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800927 android:icon="@drawable/ic_settings_language">
Dianne Hackborn0702e872015-02-20 12:48:32 -0800928 <intent-filter android:priority="1">
929 <action android:name="android.settings.LOCALE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +0800930 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -0800931 <category android:name="android.intent.category.DEFAULT" />
932 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800933 <intent-filter>
934 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800935 <category android:name="android.intent.category.DEFAULT" />
936 <category android:name="android.intent.category.VOICE_LAUNCH" />
937 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700938 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Mihai Nitad7d48fd2016-01-12 08:55:05 -0800939 android:value="com.android.settings.localepicker.LocaleListEditor" />
Jason Chiu29a09e52021-10-12 17:24:34 +0800940 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
941 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100942 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
943 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700944 </activity>
Michael Chan503c2362009-12-08 22:18:23 -0800945
tmfangc0ed6142018-07-13 11:11:26 +0800946 <activity android:name=".localepicker.LocalePickerWithRegionActivity"
947 android:excludeFromRecents="true"
948 android:configChanges="orientation|keyboardHidden|screenSize"
Arc Wang4a2acd22021-05-19 16:57:21 +0800949 android:exported="false"
950 android:theme="@style/Theme.LocalePickerWithRegionActivity">
tmfangc0ed6142018-07-13 11:11:26 +0800951 </activity>
952
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800953 <activity
tom hsu6fc5bb62022-03-08 17:40:16 +0800954 android:name=".localepicker.AppLocalePickerActivity"
tom hsu26b0bd72021-12-08 16:27:47 +0800955 android:label="@string/app_locale_picker_title"
tom hsub899bd32022-04-28 21:32:33 +0800956 android:configChanges="orientation|screenSize|keyboardHidden"
tom hsu26b0bd72021-12-08 16:27:47 +0800957 android:exported="true" >
958 <intent-filter>
959 <action android:name="android.settings.APP_LOCALE_SETTINGS" />
960 <category android:name="android.intent.category.DEFAULT" />
tom hsu4da192d2021-12-23 20:29:10 +0800961 <data android:scheme="package" />
tom hsu26b0bd72021-12-08 16:27:47 +0800962 </intent-filter>
tom hsu26b0bd72021-12-08 16:27:47 +0800963 </activity>
964
965 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -0800966 android:name=".Settings$LanguageAndInputSettingsActivity"
Doris Ling204ca742017-07-18 15:43:26 -0700967 android:label="@string/language_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -0700968 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +0800969 android:icon="@drawable/ic_settings_language">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800970 <intent-filter>
ronish4e856272022-04-14 14:55:35 +0000971 <action android:name="android.settings.LANGUAGE_SETTINGS"/>
972 <category android:name="android.intent.category.DEFAULT"/>
973 </intent-filter>
974 <intent-filter>
975 <action android:name="android.intent.action.MAIN"/>
976 <category android:name="android.intent.category.VOICE_LAUNCH"/>
977 <category android:name="android.intent.category.DEFAULT"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800978 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700979 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang320d60f2017-03-20 17:32:32 -0700980 android:value="com.android.settings.language.LanguageAndInputSettings"/>
Jason Chiu646a31e2021-11-10 11:56:00 +0800981 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
982 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +0100983 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Fan Zhang320d60f2017-03-20 17:32:32 -0700984 android:value="true"/>
Amith Yamasani5203bdf2010-11-04 09:59:44 -0700985 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800986
danielwbhuangc9cb6802022-08-17 22:17:08 +0800987 <activity
988 android:name=".Settings$LanguageSettingsActivity"
989 android:label="@string/languages_settings"
990 android:exported="true"
991 android:icon="@drawable/ic_settings_languages">
992 <intent-filter>
993 <action android:name="android.settings.LANGUAGE_SETTINGS"/>
994 <category android:name="android.intent.category.DEFAULT"/>
995 </intent-filter>
996 <intent-filter>
997 <action android:name="android.intent.action.MAIN"/>
998 <category android:name="android.intent.category.VOICE_LAUNCH"/>
999 <category android:name="android.intent.category.DEFAULT"/>
1000 </intent-filter>
1001 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1002 android:value="com.android.settings.language.LanguageSettings"/>
1003 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1004 android:value="@string/menu_key_system"/>
1005 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1006 android:value="true"/>
1007 </activity>
1008
1009 <activity
Jagrut Desaic36081b2023-04-20 13:50:02 -07001010 android:name=".Settings$NavigationModeSettingsActivity"
1011 android:label="@string/system_navigation_title"
1012 android:exported="true">
1013 <intent-filter>
1014 <action android:name="com.android.settings.NAVIGATION_MODE_SETTINGS"/>
1015 <category android:name="android.intent.category.DEFAULT"/>
1016 </intent-filter>
1017 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1018 android:value="com.android.settings.gestures.SystemNavigationGestureSettings"/>
1019 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1020 android:value="@string/menu_key_system"/>
1021 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1022 android:value="true"/>
1023 </activity>
1024
1025 <activity
tom hsuc03ff3b2023-01-04 08:57:43 +08001026 android:name=".Settings$RegionalPreferencesActivity"
1027 android:label="@string/regional_preferences_title"
1028 android:exported="true" >
1029 <intent-filter android:priority="1">
1030 <action android:name="android.settings.REGIONAL_PREFERENCES_SETTINGS" />
1031 <category android:name="android.intent.category.DEFAULT" />
1032 </intent-filter>
1033 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1034 android:value="com.android.settings.regionalpreferences.RegionalPreferencesEntriesFragment"/>
1035 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1036 android:value="@string/menu_key_system"/>
1037 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1038 android:value="true"/>
1039 </activity>
1040
1041 <activity
danielwbhuangc9cb6802022-08-17 22:17:08 +08001042 android:name=".Settings$KeyboardSettingsActivity"
1043 android:label="@string/keyboard_settings"
1044 android:exported="true"
1045 android:icon="@drawable/ic_settings_language">
1046 <intent-filter>
1047 <action android:name="android.intent.action.MAIN"/>
1048 <category android:name="android.intent.category.VOICE_LAUNCH"/>
1049 <category android:name="android.intent.category.DEFAULT"/>
1050 </intent-filter>
1051 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1052 android:value="com.android.settings.inputmethod.KeyboardSettings"/>
1053 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1054 android:value="@string/menu_key_system"/>
1055 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1056 android:value="true"/>
1057 </activity>
1058
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001059 <activity android:name="Settings$AvailableVirtualKeyboardActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001060 android:exported="true"
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001061 android:label="@string/available_virtual_keyboard_category">
1062 <intent-filter android:priority="1">
1063 <action android:name="android.settings.INPUT_METHOD_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001064 <category android:name="android.intent.category.BROWSABLE" />
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001065 <category android:name="android.intent.category.DEFAULT" />
1066 </intent-filter>
1067 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1068 android:value="com.android.settings.inputmethod.AvailableVirtualKeyboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001069 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1070 android:value="@string/menu_key_system"/>
Abodunrinwa Toki976bb3f2016-01-20 18:43:20 +00001071 </activity>
1072
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001073 <activity
1074 android:name="Settings$ManageAssistActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001075 android:exported="true"
Tsung-Mao Fangdf00a3b2021-06-23 17:53:59 +08001076 android:label="@string/assist_and_voice_input_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001077 <intent-filter android:priority="1">
1078 <action android:name="android.settings.VOICE_INPUT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001079 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001080 <category android:name="android.intent.category.DEFAULT" />
1081 </intent-filter>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07001082 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangdfce62c2017-02-16 15:00:53 -08001083 android:value="com.android.settings.applications.assist.ManageAssist" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001084 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1085 android:value="@string/menu_key_apps"/>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07001086 </activity>
1087
Jeff Browne46c5f32012-04-05 11:42:18 -07001088 <activity android:name="Settings$KeyboardLayoutPickerActivity"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001089 android:label="@string/keyboard_layout_picker_title"
Fan Zhang2f4355a2018-06-21 15:34:43 -07001090 android:clearTaskOnLaunch="true"
1091 android:exported="true">
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001092 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangaceee522016-11-04 14:12:15 -07001093 android:value="com.android.settings.inputmethod.KeyboardLayoutPickerFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001094 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1095 android:value="@string/menu_key_system"/>
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001096 </activity>
1097
1098 <activity android:name="Settings$PhysicalKeyboardActivity"
Yorke Leed4485222016-03-23 11:11:46 -07001099 android:label="@string/physical_keyboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001100 android:exported="true"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001101 android:clearTaskOnLaunch="true">
Yohei Yukawa7c4499d2016-01-27 19:18:52 -08001102 <intent-filter android:priority="1">
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001103 <action android:name="android.settings.HARD_KEYBOARD_SETTINGS" />
Yohei Yukawa7c4499d2016-01-27 19:18:52 -08001104 <category android:name="android.intent.category.DEFAULT" />
1105 </intent-filter>
Jeff Browne46c5f32012-04-05 11:42:18 -07001106 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Abodunrinwa Tokib28b2cc2016-03-22 16:29:38 +00001107 android:value="com.android.settings.inputmethod.PhysicalKeyboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001108 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1109 android:value="@string/menu_key_system"/>
Jeff Browne46c5f32012-04-05 11:42:18 -07001110 </activity>
1111
Amith Yamasaniaf925282011-11-10 15:28:59 -08001112 <!-- Keep compatibility with old shortcuts. -->
1113 <activity-alias android:name="LanguageSettings"
Doris Ling7e06ed22017-06-07 14:16:43 -07001114 android:label="@string/language_input_gesture_title"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001115 android:clearTaskOnLaunch="true"
1116 android:exported="true"
Doris Lingd299b032017-02-28 17:32:36 -08001117 android:targetActivity="Settings$LanguageAndInputSettingsActivity">
Amith Yamasaniaf925282011-11-10 15:28:59 -08001118 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingd299b032017-02-28 17:32:36 -08001119 android:value="com.android.settings.language.LanguageAndInputSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001120 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1121 android:value="@string/menu_key_system"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001122 </activity-alias>
1123
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001124 <activity
1125 android:name="Settings$SpellCheckersSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001126 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001127 android:label="@string/spellcheckers_settings_title">
satoke077d2b2011-07-25 09:38:11 +09001128 <intent-filter>
1129 <action android:name="android.intent.action.MAIN" />
satoke077d2b2011-07-25 09:38:11 +09001130 <category android:name="android.intent.category.VOICE_LAUNCH" />
1131 <category android:name="android.intent.category.DEFAULT" />
satoke077d2b2011-07-25 09:38:11 +09001132 </intent-filter>
1133 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1134 android:value="com.android.settings.inputmethod.SpellCheckersSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001135 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1136 android:value="@string/menu_key_system"/>
satoke077d2b2011-07-25 09:38:11 +09001137 </activity>
1138
Daisuke Miyakawa649b9f12011-01-30 19:43:08 -08001139 <activity android:name=".inputmethod.InputMethodAndSubtypeEnablerActivity"
satok5e9c5e72011-07-21 15:32:28 +09001140 android:label=""
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001141 android:exported="true"
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001142 android:clearTaskOnLaunch="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001143 <intent-filter android:priority="1">
1144 <action android:name="android.settings.INPUT_METHOD_SUBTYPE_SETTINGS" />
1145 <category android:name="android.intent.category.DEFAULT" />
1146 </intent-filter>
satok4a5f8892010-10-26 18:58:09 +09001147 <intent-filter>
1148 <action android:name="android.intent.action.MAIN" />
satok4a5f8892010-10-26 18:58:09 +09001149 <category android:name="android.intent.category.VOICE_LAUNCH" />
1150 <category android:name="android.intent.category.DEFAULT" />
satok4a5f8892010-10-26 18:58:09 +09001151 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001152 </activity>
satok4a5f8892010-10-26 18:58:09 +09001153
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001154 <activity
1155 android:name="Settings$UserDictionarySettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001156 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001157 android:label="@string/user_dict_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001158 <intent-filter android:priority="1">
1159 <action android:name="android.settings.USER_DICTIONARY_SETTINGS" />
1160 <category android:name="android.intent.category.DEFAULT" />
1161 </intent-filter>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001162 <intent-filter>
1163 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001164 <category android:name="android.intent.category.DEFAULT" />
1165 <category android:name="android.intent.category.VOICE_LAUNCH" />
1166 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001167 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Satoshi Kataoka71c915b2013-06-19 22:40:36 +09001168 android:value="com.android.settings.inputmethod.UserDictionaryList" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001169 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1170 android:value="@string/menu_key_system"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001171 </activity>
1172
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001173 <activity android:name=".inputmethod.UserDictionaryAddWordActivity"
Patrick Baumann7a2f9dc2018-04-06 10:08:26 -07001174 android:visibleToInstantApps="true"
Satoshi Kataoka5df33072013-04-30 14:30:12 +09001175 android:label="@string/user_dict_settings_title"
jackqdyulei71a05742017-03-22 13:33:51 -07001176 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Jean Chalarde17eefa2011-12-02 14:56:39 +09001177 android:windowSoftInputMode="stateVisible"
Jean Chalard124283e2011-12-16 19:35:46 +09001178 android:noHistory="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001179 android:exported="true"
Jean Chalarde17eefa2011-12-02 14:56:39 +09001180 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001181 <intent-filter android:priority="1">
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001182 <action android:name="com.android.settings.USER_DICTIONARY_INSERT" />
1183 <category android:name="android.intent.category.DEFAULT" />
Jean Chalardbd44e9d2011-11-30 20:51:20 +09001184 </intent-filter>
1185 </activity>
1186
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001187 <activity
1188 android:name="Settings$ZenModeSettingsActivity"
1189 android:label="@string/zen_mode_settings_title"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001190 android:icon="@drawable/ic_homepage_notification"
Fan Zhangac4ad162018-12-18 11:32:10 -08001191 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001192 <intent-filter android:priority="1">
1193 <action android:name="android.settings.ZEN_MODE_SETTINGS" />
1194 <category android:name="android.intent.category.DEFAULT" />
1195 </intent-filter>
Julia Reynolds200da892018-05-04 08:54:53 -04001196 <intent-filter android:priority="1">
1197 <action android:name="android.settings.ZEN_MODE_PRIORITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001198 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynolds200da892018-05-04 08:54:53 -04001199 <category android:name="android.intent.category.DEFAULT" />
1200 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001201 <intent-filter android:priority="41">
John Spurlock72438062014-02-27 18:01:20 -05001202 <action android:name="android.intent.action.MAIN" />
John Spurlock72438062014-02-27 18:01:20 -05001203 <category android:name="com.android.settings.SHORTCUT" />
1204 </intent-filter>
Beverly4359d4b2017-10-02 09:45:48 -04001205 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001206 android:value="com.android.settings.notification.zen.ZenModeSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001207 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1208 android:value="@string/menu_key_notifications"/>
Beverly4359d4b2017-10-02 09:45:48 -04001209 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1210 android:value="true" />
1211 </activity>
1212
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001213 <activity
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001214 android:name=".notification.zen.ZenSuggestionActivity"
Beverly8f522582018-05-09 15:27:45 -04001215 android:label="@string/zen_mode_settings_title"
Mill Chen71958002019-01-23 10:44:39 +08001216 android:icon="@drawable/ic_suggestion_dnd"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001217 android:exported="true"
Beverly8f522582018-05-09 15:27:45 -04001218 android:theme="@android:style/Theme.NoDisplay">
1219 <intent-filter>
1220 <action android:name="android.intent.action.MAIN" />
1221 <category android:name="com.android.settings.suggested.category.ZEN" />
1222 </intent-filter>
1223 <intent-filter>
1224 <action android:name="android.intent.action.MAIN" />
1225 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1226 </intent-filter>
1227
1228 <meta-data android:name="com.android.settings.dismiss"
1229 android:value="0" />
1230 <meta-data android:name="com.android.settings.title"
1231 android:resource="@string/zen_suggestion_title" />
1232 <meta-data android:name="com.android.settings.summary"
1233 android:resource="@string/zen_suggestion_summary" />
1234 </activity>
1235
1236 <activity
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001237 android:name=".notification.zen.ZenOnboardingActivity"
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001238 android:label="@string/zen_onboarding_dnd_visual_disturbances_header"
Antony Sargent32acddc2018-05-21 16:42:11 -07001239 android:icon="@drawable/ic_notifications"
Julia Reynolds29ba3602018-04-30 09:13:34 -04001240 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001241 android:exported="true">
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001242 <intent-filter android:priority="1">
1243 <action android:name="android.settings.ZEN_MODE_ONBOARDING" />
1244 <category android:name="android.intent.category.DEFAULT" />
1245 </intent-filter>
1246 </activity>
Julia Reynolds4b8fe092018-04-09 15:24:55 -04001247 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001248 android:name="Settings$ZenModeAutomationSettingsActivity"
1249 android:label="@string/zen_mode_automation_settings_title"
Antony Sargent32acddc2018-05-21 16:42:11 -07001250 android:icon="@drawable/ic_notifications"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001251 android:exported="true">
Julia Reynoldse1759022017-03-22 14:05:46 -04001252 <intent-filter android:priority="1">
1253 <action android:name="android.settings.ZEN_MODE_AUTOMATION_SETTINGS" />
1254 <category android:name="android.intent.category.DEFAULT" />
1255 </intent-filter>
1256 <intent-filter android:priority="1">
1257 <action android:name="android.settings.ACTION_CONDITION_PROVIDER_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001258 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynoldse1759022017-03-22 14:05:46 -04001259 <category android:name="android.intent.category.DEFAULT" />
1260 </intent-filter>
John Spurlock72438062014-02-27 18:01:20 -05001261 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001262 android:value="com.android.settings.notification.zen.ZenModeAutomationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001263 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1264 android:value="@string/menu_key_notifications"/>
Julia Reynolds5555d262015-11-09 10:52:17 -05001265 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1266 android:value="true" />
1267 </activity>
1268
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001269 <activity android:name="Settings$WallpaperSettingsActivity"
1270 android:label="@string/wallpaper_settings_fragment_title"
Sunny Shao61aaed42019-03-26 20:14:58 +08001271 android:icon="@drawable/ic_wallpaper"
1272 android:exported="true">
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001273 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang2907f862017-03-17 15:05:14 -07001274 android:value="com.android.settings.wallpaper.WallpaperTypeSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001275 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1276 android:value="@string/menu_key_wallpaper"/>
Vladislav Kaznacheev6e93bdd2016-03-09 14:24:45 -08001277 </activity>
1278
Fan Zhang2907f862017-03-17 15:05:14 -07001279 <activity android:name=".wallpaper.WallpaperSuggestionActivity"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001280 android:label="@string/wallpaper_settings_title"
Mill Chene1fd5af2019-02-22 20:40:52 +08001281 android:icon="@drawable/ic_wallpaper"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001282 android:exported="true"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001283 android:theme="@android:style/Theme.NoDisplay">
Fan Zhang7afbf0f2017-05-08 09:31:01 -07001284 <intent-filter>
ronishd491d7a42022-05-13 13:42:45 +00001285 <action android:name="android.settings.WALLPAPER_SETTINGS"/>
1286 <category android:name="android.intent.category.DEFAULT"/>
Jason Monkb9e5d232016-01-26 17:43:57 -05001287 </intent-filter>
Maurice Lamd64d3c02017-07-07 18:21:29 -07001288 <intent-filter>
ronishd491d7a42022-05-13 13:42:45 +00001289 <action android:name="android.intent.action.MAIN"/>
1290 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION"/>
1291 </intent-filter>
1292 <intent-filter>
1293 <action android:name="android.intent.action.MAIN"/>
1294 <category android:name="com.android.settings.suggested.category.PERSONALIZE"/>
Maurice Lamd64d3c02017-07-07 18:21:29 -07001295 </intent-filter>
Jason Monkb9e5d232016-01-26 17:43:57 -05001296 <meta-data android:name="com.android.settings.title"
ronishd491d7a42022-05-13 13:42:45 +00001297 android:resource="@string/wallpaper_suggestion_title"/>
Jason Monkec1f28e2016-02-24 17:39:29 -05001298 <meta-data android:name="com.android.settings.summary"
Sunny Goyal0bf6f942016-06-13 15:28:47 -07001299 android:resource="@string/wallpaper_suggestion_summary" />
Fan Zhangaf91c1f2017-06-03 15:24:11 -07001300 <meta-data android:name="com.android.settings.dismiss"
1301 android:value="3,7,30" />
Maurice Lam992fa862017-06-09 16:14:36 -07001302 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Jason Monkb9e5d232016-01-26 17:43:57 -05001303 </activity>
1304
Beth Thibodeaubf63dde2019-04-29 17:59:54 -04001305 <activity android:name=".wallpaper.StyleSuggestionActivity"
1306 android:label="@string/style_suggestion_title"
1307 android:icon="@drawable/ic_theme"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001308 android:exported="true"
Beth Thibodeaubf63dde2019-04-29 17:59:54 -04001309 android:theme="@android:style/Theme.NoDisplay">
1310 <intent-filter>
1311 <action android:name="android.intent.action.MAIN" />
1312 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1313 </intent-filter>
1314 <meta-data android:name="com.android.settings.title"
1315 android:resource="@string/style_suggestion_title" />
1316 <meta-data android:name="com.android.settings.summary"
1317 android:resource="@string/style_suggestion_summary" />
1318 <meta-data android:name="com.android.settings.dismiss"
1319 android:value="3,7,30" />
1320 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
1321 </activity>
1322
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001323 <activity
1324 android:name="Settings$ZenModeScheduleRuleSettingsActivity"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001325 android:exported="true">
John Spurlock45fa1402015-04-09 12:50:04 -04001326 <intent-filter android:priority="1">
1327 <action android:name="android.settings.ZEN_MODE_SCHEDULE_RULE_SETTINGS" />
1328 <category android:name="android.intent.category.DEFAULT" />
1329 </intent-filter>
1330 <intent-filter>
1331 <action android:name="android.intent.action.MAIN" />
1332 <category android:name="android.intent.category.DEFAULT" />
John Spurlock45fa1402015-04-09 12:50:04 -04001333 </intent-filter>
1334 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001335 android:value="com.android.settings.notification.zen.ZenModeScheduleRuleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001336 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1337 android:value="@string/menu_key_notifications"/>
John Spurlock45fa1402015-04-09 12:50:04 -04001338 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1339 android:value="true" />
1340 </activity>
1341
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001342 <activity
1343 android:name="Settings$ZenModeEventRuleSettingsActivity"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001344 android:exported="true">
John Spurlockf57bad72015-04-30 09:26:15 -04001345 <intent-filter android:priority="1">
1346 <action android:name="android.settings.ZEN_MODE_EVENT_RULE_SETTINGS" />
1347 <category android:name="android.intent.category.DEFAULT" />
1348 </intent-filter>
John Spurlockf57bad72015-04-30 09:26:15 -04001349 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001350 android:value="com.android.settings.notification.zen.ZenModeEventRuleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001351 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1352 android:value="@string/menu_key_notifications"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08001353 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1354 android:value="true" />
John Spurlockf57bad72015-04-30 09:26:15 -04001355 </activity>
1356
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001357 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001358 android:name="Settings$DisplaySettingsActivity"
1359 android:label="@string/display_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001360 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001361 android:icon="@drawable/ic_homepage_display">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001362 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001363 <action android:name="com.android.settings.DISPLAY_SETTINGS" />
Amith Yamasani0422a3b2009-06-12 14:15:20 -07001364 <action android:name="android.settings.DISPLAY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001365 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001366 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001367 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001368 <intent-filter android:priority="30">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001369 <action android:name="android.intent.action.MAIN" />
Dianne Hackborna54672f2009-06-24 12:45:09 -07001370 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001371 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001372 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Abel Tesfaye029c0952021-03-04 21:55:47 +00001373 android:value="com.android.settings.DisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001374 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1375 android:value="@string/menu_key_display"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001376 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1377 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001378 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001379
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001380 <activity
Abel Tesfaye029c0952021-03-04 21:55:47 +00001381 android:name="Settings$SmartAutoRotateSettingsActivity"
1382 android:label="@string/accelerometer_title"
Sunny Shao75a1a3f2023-04-11 17:13:41 +08001383 android:icon="@drawable/ic_screen_rotation"
Abel Tesfaye029c0952021-03-04 21:55:47 +00001384 android:exported="true">
1385 <intent-filter android:priority="1">
1386 <action android:name="android.settings.AUTO_ROTATE_SETTINGS" />
1387 <category android:name="android.intent.category.DEFAULT" />
1388 </intent-filter>
1389 <intent-filter android:priority="32">
1390 <action android:name="android.intent.action.MAIN" />
1391 <category android:name="com.android.settings.SHORTCUT" />
1392 </intent-filter>
1393 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1394 android:value="com.android.settings.display.SmartAutoRotatePreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001395 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1396 android:value="@string/menu_key_display"/>
Abel Tesfaye029c0952021-03-04 21:55:47 +00001397 </activity>
1398
1399 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001400 android:name="Settings$NightDisplaySettingsActivity"
1401 android:label="@string/night_display_title"
1402 android:enabled="@*android:bool/config_nightDisplayAvailable"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001403 android:exported="true"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001404 android:icon="@drawable/ic_homepage_night_display">
Fan Zhang5a981772018-06-22 14:30:09 -07001405 <intent-filter android:priority="32">
Sean Stout763acf02017-06-20 18:07:22 -07001406 <action android:name="android.intent.action.MAIN" />
Sean Stout763acf02017-06-20 18:07:22 -07001407 <category android:name="com.android.settings.SHORTCUT" />
1408 </intent-filter>
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001409 <intent-filter android:priority="1">
1410 <action android:name="android.settings.NIGHT_DISPLAY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001411 <category android:name="android.intent.category.BROWSABLE" />
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001412 <category android:name="android.intent.category.DEFAULT" />
1413 </intent-filter>
Sean Stout06251262017-02-15 14:04:25 -08001414 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1415 android:value="com.android.settings.display.NightDisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001416 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1417 android:value="@string/menu_key_display"/>
Sean Stout40067be2017-04-10 15:31:25 -07001418 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1419 android:value="true" />
Justin Klaasseneae3d9f2016-07-21 19:25:17 -07001420 </activity>
1421
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001422 <activity
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001423 android:name="Settings$DarkThemeSettingsActivity"
Xuanang Zhao2598dd42022-09-20 14:37:10 +08001424 android:label="@string/dark_ui_mode"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001425 android:exported="true"
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001426 android:enabled="true">
1427 <intent-filter android:priority="32">
1428 <action android:name="android.intent.action.MAIN" />
1429 <category android:name="com.android.settings.SHORTCUT" />
1430 </intent-filter>
1431 <intent-filter android:priority="1">
1432 <action android:name="android.settings.DARK_THEME_SETTINGS" />
1433 <category android:name="android.intent.category.DEFAULT" />
1434 </intent-filter>
1435 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1436 android:value="com.android.settings.display.darkmode.DarkModeSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001437 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1438 android:value="@string/menu_key_display"/>
Jay Aliomer82a0ea02019-12-10 14:49:27 -05001439 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1440 android:value="true" />
1441 </activity>
1442
1443 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001444 android:name="Settings$NightDisplaySuggestionActivity"
Sean Stout2bc94d62017-05-18 13:39:25 -07001445 android:enabled="@*android:bool/config_nightDisplayAvailable"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001446 android:exported="true"
Mill Chen71958002019-01-23 10:44:39 +08001447 android:icon="@drawable/ic_suggestion_night_display">
Sean Stout2bc94d62017-05-18 13:39:25 -07001448 <intent-filter>
1449 <action android:name="android.intent.action.MAIN" />
1450 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
1451 </intent-filter>
1452 <meta-data android:name="com.android.settings.dismiss"
1453 android:value="6,10,30" />
1454 <meta-data android:name="com.android.settings.title"
1455 android:resource="@string/night_display_suggestion_title" />
1456 <meta-data android:name="com.android.settings.summary"
1457 android:resource="@string/night_display_suggestion_summary" />
1458 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1459 android:value="true" />
1460 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1461 android:value="com.android.settings.display.NightDisplaySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001462 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1463 android:value="@string/menu_key_display"/>
Sean Stout2bc94d62017-05-18 13:39:25 -07001464 </activity>
1465
Fan Zhang881d5792018-01-26 10:15:56 -08001466 <activity android:name=".Settings$MyDeviceInfoActivity"
Daniel Nishi12254692018-03-23 13:43:12 -07001467 android:label="@string/about_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001468 android:exported="true"
Sunny Shao86140582019-03-22 15:22:36 +08001469 android:icon="@drawable/ic_homepage_about">
Daniel Nishi1e620952017-12-19 10:15:14 -08001470 <intent-filter android:priority="1">
Daniel Nishi87f35e22018-01-22 15:17:25 -08001471 <action android:name="android.settings.DEVICE_INFO_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001472 <category android:name="android.intent.category.BROWSABLE" />
Daniel Nishi41af55e2018-01-25 15:24:29 -08001473 <action android:name="android.settings.DEVICE_NAME" />
Daniel Nishi1e620952017-12-19 10:15:14 -08001474 <category android:name="android.intent.category.DEFAULT" />
1475 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001476 <intent-filter android:priority="71">
Daniel Nishi1e620952017-12-19 10:15:14 -08001477 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -07001478 <category android:name="com.android.settings.SHORTCUT" />
Daniel Nishi1e620952017-12-19 10:15:14 -08001479 </intent-filter>
Daniel Nishi1e620952017-12-19 10:15:14 -08001480 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Daniel Nishi87f35e22018-01-22 15:17:25 -08001481 android:value="com.android.settings.deviceinfo.aboutphone.MyDeviceInfoFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001482 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1483 android:value="@string/menu_key_about_device"/>
Daniel Nishi1e620952017-12-19 10:15:14 -08001484 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1485 android:value="true" />
1486 </activity>
1487
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001488 <activity
Silin Huangc80b3ab2021-05-13 23:59:33 -07001489 android:name=".Settings$LockScreenSettingsActivity"
1490 android:label="@string/lockscreen_settings_title"
1491 android:exported="true">
1492 <intent-filter android:priority="1">
1493 <action android:name="android.settings.LOCK_SCREEN_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.security.LockscreenDashboardFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001498 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1499 android:value="@string/menu_key_display"/>
Silin Huangc80b3ab2021-05-13 23:59:33 -07001500 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1501 android:value="true" />
1502 </activity>
1503
1504 <activity
shaoweishen1b58ba52021-12-03 08:47:15 +00001505 android:name=".Settings$BlueToothPairingActivity"
1506 android:label="@string/bluetooth_pairing_page_title"
1507 android:permission="android.permission.BLUETOOTH_SCAN"
1508 android:exported="true">
1509 <intent-filter android:priority="1">
1510 <action android:name="android.settings.BLUETOOTH_PAIRING_SETTINGS" />
1511 <category android:name="android.intent.category.DEFAULT" />
1512 </intent-filter>
1513 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1514 android:value="com.android.settings.bluetooth.BluetoothPairingDetail" />
1515 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1516 android:value="@string/menu_key_connected_devices"/>
1517 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1518 android:value="true" />
1519 </activity>
1520
1521 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001522 android:name="SettingsLicenseActivity"
1523 android:label="@string/settings_license_activity_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001524 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001525 android:configChanges="orientation|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001526 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001527 <action android:name="android.settings.LICENSE" />
1528 <category android:name="android.intent.category.DEFAULT" />
1529 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001530 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1531 android:value="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001532 </activity>
1533
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001534 <activity android:name=".Settings$ModuleLicensesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001535 android:exported="true"
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001536 android:label="@string/module_license_title">
1537 <intent-filter>
1538 <action android:name="android.settings.MODULE_LICENSES" />
1539 <category android:name="android.intent.category.DEFAULT" />
1540 </intent-filter>
1541 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1542 android:value="com.android.settings.deviceinfo.legal.ModuleLicensesDashboard" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001543 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1544 android:value="@string/menu_key_about_device"/>
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07001545 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1546 android:value="true" />
1547 </activity>
1548
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001549 <activity
1550 android:name="Settings$ManageApplicationsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001551 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001552 android:exported="true"
Fan Zhangc7635e52019-03-04 14:27:08 -08001553 android:label="@string/applications_settings">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001554 <intent-filter android:priority="1">
Gilles Debunneab189bd2011-07-06 13:10:16 -07001555 <action android:name="android.settings.APPLICATION_SETTINGS" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001556 <action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" />
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001557 <action android:name="android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001558 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001559 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001560 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001561 <intent-filter android:priority="20">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001562 <action android:name="android.intent.action.MAIN" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001563 <category android:name="com.android.settings.SHORTCUT" />
1564 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001565 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001566 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001567 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1568 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001569 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1570 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001571 </activity>
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001572
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001573 <!-- Keep compatibility with old shortcuts. -->
1574 <activity-alias android:name=".applications.ManageApplications"
1575 android:label="@string/applications_settings"
1576 android:exported="true"
1577 android:targetActivity="Settings$ManageApplicationsActivity">
1578 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1579 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001580 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1581 android:value="@string/menu_key_apps"/>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001582 </activity-alias>
1583
Graciela Wissen Putrif6506e02023-07-31 14:20:40 +00001584 <activity android:name="Settings$UserAspectRatioAppListActivity"
1585 android:exported="true"
Massimo Carlie3951e32023-09-22 10:01:14 +00001586 android:label="@string/aspect_ratio_experimental_title">
Graciela Wissen Putrif6506e02023-07-31 14:20:40 +00001587 <intent-filter android:priority="1">
1588 <action android:name="android.settings.MANAGE_USER_ASPECT_RATIO_SETTINGS"/>
1589 <category android:name="android.intent.category.DEFAULT" />
1590 </intent-filter>
1591 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1592 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
1593 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1594 android:value="@string/menu_key_apps"/>
1595 </activity>
1596
Massimo Carli1dc17512023-09-21 10:33:57 +00001597 <activity android:name="Settings$UserAspectRatioAppActivity"
1598 android:exported="true"
Massimo Carlie3951e32023-09-22 10:01:14 +00001599 android:label="@string/aspect_ratio_experimental_title">
Massimo Carli1dc17512023-09-21 10:33:57 +00001600 <intent-filter>
1601 <action android:name="android.settings.MANAGE_USER_ASPECT_RATIO_SETTINGS" />
1602 <category android:name="android.intent.category.DEFAULT" />
1603 <data android:scheme="package" />
1604 </intent-filter>
1605 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1606 android:value="com.android.settings.applications.appcompat.UserAspectRatioDetails" />
1607 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1608 android:value="@string/menu_key_apps"/>
1609 </activity>
1610
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001611 <activity
1612 android:name="Settings$ManageDomainUrlsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001613 android:exported="true"
Sunny Shao600ba962019-07-04 11:52:59 +08001614 android:label="@string/domain_urls_title">
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001615 <intent-filter>
1616 <action android:name="android.settings.MANAGE_DOMAIN_URLS" />
1617 <category android:name="android.intent.category.DEFAULT" />
1618 </intent-filter>
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001619 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
stanley.tf_wang828409a2018-04-13 16:18:13 +08001620 android:value="com.android.settings.applications.managedomainurls.ManageDomainUrls" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001621 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1622 android:value="@string/menu_key_apps"/>
Todd Kennedy2ef1aa52016-09-06 14:02:38 -07001623 </activity>
1624
Muyuan Liba115af2016-03-25 15:46:12 -07001625 <activity android:name="Settings$AppMemoryUsageActivity"
1626 android:label="@string/app_list_memory_use"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001627 android:exported="true"
Muyuan Liba115af2016-03-25 15:46:12 -07001628 android:icon="@drawable/ic_settings_memory">
1629 <intent-filter>
1630 <action android:name="android.settings.APP_MEMORY_USAGE" />
1631 <category android:name="android.intent.category.DEFAULT" />
1632 </intent-filter>
Muyuan Liba115af2016-03-25 15:46:12 -07001633 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1634 android:value="com.android.settings.applications.ProcessStatsUi" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001635 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1636 android:value="@string/menu_key_apps"/>
Muyuan Liba115af2016-03-25 15:46:12 -07001637 </activity>
1638
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001639 <activity
1640 android:name="Settings$HighPowerApplicationsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001641 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001642 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001643 android:label="@string/high_power_apps">
Jason Monk3a90d7c2015-06-10 11:03:06 -04001644 <intent-filter android:priority="1">
1645 <action android:name="android.settings.IGNORE_BATTERY_OPTIMIZATION_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001646 <category android:name="android.intent.category.BROWSABLE" />
Jason Monk3a90d7c2015-06-10 11:03:06 -04001647 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn3f98c0c2015-06-12 18:13:54 -07001648 </intent-filter>
Jason Monk1eb54eb2015-04-29 12:46:42 -04001649 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001650 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001651 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1652 android:value="@string/menu_key_apps"/>
Jason Monk1eb54eb2015-04-29 12:46:42 -04001653 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1654 android:value="true" />
1655 </activity>
1656
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001657 <activity
1658 android:name=".datausage.AppDataUsageActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001659 android:exported="true"
Arc Wang358dd2b2022-05-06 04:07:50 +00001660 android:noHistory="true">
Felipe Leme616ff3e2016-04-26 13:50:14 -07001661 <intent-filter android:priority="1">
1662 <action android:name="android.settings.IGNORE_BACKGROUND_DATA_RESTRICTIONS_SETTINGS" />
1663 <category android:name="android.intent.category.DEFAULT" />
1664 <data android:scheme="package" />
1665 </intent-filter>
1666 </activity>
1667
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001668 <activity
1669 android:name=".fuelgauge.RequestIgnoreBatteryOptimizations"
1670 android:label="@string/high_power_apps"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001671 android:exported="true"
Arc Wang5a298fb2020-06-30 14:14:02 +08001672 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
Dianne Hackbornbe4df032015-08-10 14:53:33 -07001673 <intent-filter android:priority="1">
1674 <action android:name="android.settings.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
1675 <category android:name="android.intent.category.DEFAULT" />
1676 <data android:scheme="package" />
1677 </intent-filter>
1678 </activity>
1679
Fan Zhang66156d62018-05-09 17:33:19 -07001680 <activity
1681 android:name=".slices.SliceDeepLinkSpringBoard"
1682 android:excludeFromRecents="true"
Fan Zhang03dd39c2019-04-02 16:41:01 -07001683 android:theme="@android:style/Theme.NoDisplay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001684 android:exported="true"
Alexander Milantevc413b3e2023-03-14 16:11:30 +00001685 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang03dd39c2019-04-02 16:41:01 -07001686 android:permission="android.permission.MODIFY_PHONE_STATE">
Jason Monkf6edc7c2017-11-22 10:04:38 -05001687 <intent-filter>
1688 <action android:name="android.intent.action.VIEW" />
1689 <category android:name="android.intent.category.DEFAULT" />
1690 <category android:name="android.intent.category.BROWSABLE" />
1691 <data android:scheme="settings"
1692 android:host="com.android.settings.slices" />
1693 </intent-filter>
1694 </activity>
1695
Amith Yamasaniaf925282011-11-10 15:28:59 -08001696 <!-- Provide direct entry into manage apps showing running services.
1697 This is for compatibility with old shortcuts. -->
1698 <activity-alias android:name=".RunningServices"
1699 android:label="@string/runningservices_settings_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001700 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001701 android:exported="true"
1702 android:targetActivity="Settings$ManageApplicationsActivity">
1703 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001704 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001705 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1706 android:value="@string/menu_key_system"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001707 </activity-alias>
Lifu Tangfc86f692013-07-30 18:34:35 -07001708
Amith Yamasaniaf925282011-11-10 15:28:59 -08001709 <!-- Provide direct entry into manage apps showing storage usage for apps.
1710 This is for compatibility with old shortcuts. -->
1711 <activity-alias android:name=".applications.StorageUse"
1712 android:label="@string/storageuse_settings_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001713 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001714 android:exported="true"
1715 android:targetActivity="Settings$ManageApplicationsActivity">
1716 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001717 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001718 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1719 android:value="@string/menu_key_apps"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08001720 </activity-alias>
1721
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001722 <!-- Still need a top-level activity for showing app details. Aliasing
1723 trick is so the code that is now a fragment can still be called
1724 InstalledAppDetails. -->
1725 <activity android:name=".applications.InstalledAppDetailsTop"
1726 android:label="@string/application_info_label"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001727 android:exported="true" />
Gilles Debunneab189bd2011-07-06 13:10:16 -07001728
Amith Yamasaniaf925282011-11-10 15:28:59 -08001729 <!-- Keep compatibility with old shortcuts. -->
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001730 <activity-alias android:name=".applications.InstalledAppDetails"
Amith Yamasaniaf925282011-11-10 15:28:59 -08001731 android:label="@string/application_info_label"
1732 android:exported="true"
1733 android:targetActivity=".applications.InstalledAppDetailsTop">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001734 <intent-filter android:priority="1">
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001735 <action android:name="android.settings.APPLICATION_DETAILS_SETTINGS" />
Eugene Susla596662c2020-04-13 13:20:50 -07001736 <action android:name="android.intent.action.AUTO_REVOKE_PERMISSIONS" />
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001737 <category android:name="android.intent.category.DEFAULT" />
1738 <data android:scheme="package" />
1739 </intent-filter>
Jason Chiubbb9f202022-03-10 15:34:55 +08001740 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1741 android:value="@string/menu_key_apps"/>
Dianne Hackbornf4eb85b2010-10-29 16:53:04 -07001742 </activity-alias>
1743
Chaohui Wang94906cf2023-05-29 16:59:36 +00001744 <activity-alias android:name="ManageFullScreenIntent"
Lyn685f1e42023-02-01 05:41:03 +00001745 android:exported="true"
1746 android:targetActivity=".spa.SpaBridgeActivity">
1747 <meta-data android:name="com.android.settings.spa.DESTINATION"
1748 android:value="TogglePermissionAppList/UseFullScreenIntent"/>
1749 </activity-alias>
1750
Chaohui Wang94906cf2023-05-29 16:59:36 +00001751 <activity-alias android:name="AppManageFullScreenIntent"
Lyn685f1e42023-02-01 05:41:03 +00001752 android:exported="true"
1753 android:targetActivity=".spa.SpaAppBridgeActivity">
1754 <intent-filter>
1755 <action android:name="android.settings.MANAGE_APP_USE_FULL_SCREEN_INTENT" />
1756 <category android:name="android.intent.category.DEFAULT" />
1757 <data android:scheme="package" />
1758 </intent-filter>
1759 <meta-data android:name="com.android.settings.spa.DESTINATION"
1760 android:value="TogglePermissionAppInfoPage/UseFullScreenIntent"/>
1761 </activity-alias>
1762
Ben Lin30ed7c72018-09-13 15:22:03 -07001763 <activity android:name=".applications.InstalledAppOpenByDefaultActivity"
Ben Lin0cdc1032018-02-27 15:31:40 -08001764 android:label="@string/application_info_label"
Arc Wang358dd2b2022-05-06 04:07:50 +00001765 android:exported="true">
Ben Lin0cdc1032018-02-27 15:31:40 -08001766 <intent-filter android:priority="1">
Winsoned6d7332021-04-02 12:43:55 -07001767 <action android:name="android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" />
1768 <!-- Also catch legacy "com." prefixed action. -->
Ben Lin30ed7c72018-09-13 15:22:03 -07001769 <action android:name="com.android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" />
Ben Lin0cdc1032018-02-27 15:31:40 -08001770 <category android:name="android.intent.category.DEFAULT" />
1771 <data android:scheme="package" />
1772 </intent-filter>
Jason Chiubbb9f202022-03-10 15:34:55 +08001773 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1774 android:value="@string/menu_key_apps"/>
Ben Lin0cdc1032018-02-27 15:31:40 -08001775 </activity>
1776
Dianne Hackborn508fedc2010-07-28 17:10:42 -07001777 <!-- Provide direct entry into manage apps showing running services. -->
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001778 <activity android:name="Settings$RunningServicesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001779 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001780 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001781 android:label="@string/runningservices_settings_title">
Dianne Hackbornc58c5492009-08-31 21:33:17 -07001782 <intent-filter>
1783 <action android:name="android.intent.action.MAIN" />
1784 <category android:name="android.intent.category.DEFAULT" />
1785 <category android:name="android.intent.category.MONKEY" />
1786 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackbornc58c5492009-08-31 21:33:17 -07001787 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001788 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001789 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001790 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1791 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001792 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1793 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001794 </activity>
Amith Yamasani1bb6db52010-09-17 13:34:47 -07001795
Amith Yamasaniaf925282011-11-10 15:28:59 -08001796 <!-- Provide direct entry into manage apps showing storage usage of apps. -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001797 <activity
1798 android:name="Settings$StorageUseActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02001799 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001800 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001801 android:label="@string/storageuse_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001802 <intent-filter android:priority="1">
1803 <action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" />
1804 <category android:name="android.intent.category.DEFAULT" />
1805 </intent-filter>
Dianne Hackborn728ac352010-06-06 22:51:42 -07001806 <intent-filter>
1807 <action android:name="android.intent.action.MAIN" />
1808 <category android:name="android.intent.category.DEFAULT" />
1809 <category android:name="android.intent.category.MONKEY" />
1810 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackborn728ac352010-06-06 22:51:42 -07001811 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001812 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07001813 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiuae5327d2021-11-04 17:09:53 +08001814 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1815 android:value="@string/menu_key_apps"/>
Zoltan Szatmary-Bande7d4982015-03-31 19:49:18 +01001816 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1817 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001818 </activity>
Amith Yamasani1bb6db52010-09-17 13:34:47 -07001819
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001820 <activity
1821 android:name="Settings$NotificationStationActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001822 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001823 android:label="@string/notification_log_title">
Fan Zhang5a981772018-06-22 14:30:09 -07001824 <intent-filter android:priority="22">
Daniel Sandler328e2d22013-01-17 13:14:02 -05001825 <action android:name="android.intent.action.MAIN" />
Daniel Sandler328e2d22013-01-17 13:14:02 -05001826 <category android:name="com.android.settings.SHORTCUT" />
1827 </intent-filter>
1828 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001829 android:value="com.android.settings.notification.history.NotificationStation" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001830 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1831 android:value="@string/menu_key_notifications"/>
Daniel Sandler328e2d22013-01-17 13:14:02 -05001832 </activity>
1833
Julia Reynoldsb37d5652019-12-12 08:12:29 -05001834 <activity
1835 android:name=".notification.history.NotificationHistoryActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001836 android:exported="true"
Tsung-Mao Fangefaf49c2021-06-29 14:40:31 +08001837 android:label="@string/notification_history_title"
1838 android:theme="@style/Theme.Settings.NoActionBar">
Julia Reynolds49880c32020-02-11 14:09:42 -05001839 <intent-filter android:priority="1">
1840 <action android:name="android.settings.NOTIFICATION_HISTORY" />
1841 <category android:name="android.intent.category.DEFAULT" />
1842 </intent-filter>
Julia Reynoldsb37d5652019-12-12 08:12:29 -05001843 <intent-filter>
1844 <action android:name="android.intent.action.MAIN" />
1845 <category android:name="android.intent.category.DEFAULT" />
1846 </intent-filter>
1847 </activity>
1848
Julia Reynoldsaceccce2019-11-26 16:14:03 -05001849 <activity android:name=".notification.zen.ZenModeVoiceActivity"
jackqdyulei71a05742017-03-22 13:33:51 -07001850 android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001851 android:exported="true"
Barnaby James0474b722015-05-10 16:24:05 -07001852 android:label="@string/zen_mode_settings_title">
Barnaby Jamesc55ea152015-04-13 14:33:53 -07001853 <intent-filter>
1854 <action android:name="android.settings.VOICE_CONTROL_DO_NOT_DISTURB_MODE" />
1855 <category android:name="android.intent.category.DEFAULT" />
1856 <category android:name="android.intent.category.VOICE" />
1857 </intent-filter>
1858 </activity>
1859
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001860 <activity
1861 android:name="Settings$LocationSettingsActivity"
1862 android:label="@string/location_settings_title"
Sunny Shaob4a5f162020-06-15 23:00:26 +08001863 android:icon="@drawable/ic_homepage_location"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001864 android:exported="true"
Yanting Yang5edcc302019-09-05 16:25:17 +08001865 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001866 <intent-filter android:priority="1">
1867 <action android:name="android.settings.LOCATION_SOURCE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001868 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001869 <category android:name="android.intent.category.DEFAULT" />
1870 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07001871 <intent-filter android:priority="52">
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001872 <action android:name="android.intent.action.MAIN" />
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001873 <category android:name="com.android.settings.SHORTCUT" />
1874 </intent-filter>
1875 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Lifu Tang83ab7c92013-07-29 12:07:48 -07001876 android:value="com.android.settings.location.LocationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08001877 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1878 android:value="@string/menu_key_location"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001879 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1880 android:value="true" />
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001881 </activity>
Lifu Tangf72f8302018-04-12 10:01:29 -07001882 <activity
1883 android:name="Settings$ScanningSettingsActivity"
Yu-Han Yange93c1292021-02-17 13:52:39 -08001884 android:label="@string/location_services_screen_title"
tmfang54a5d372018-10-30 16:49:12 +08001885 android:icon="@drawable/ic_homepage_location"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001886 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001887 android:configChanges="orientation|keyboardHidden|screenSize">
Lifu Tangf72f8302018-04-12 10:01:29 -07001888 <intent-filter android:priority="1">
1889 <action android:name="android.settings.LOCATION_SCANNING_SETTINGS" />
1890 <category android:name="android.intent.category.DEFAULT" />
1891 </intent-filter>
1892 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Yu-Han Yange93c1292021-02-17 13:52:39 -08001893 android:value="com.android.settings.location.LocationServices" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001894 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1895 android:value="@string/menu_key_location"/>
Lifu Tangf72f8302018-04-12 10:01:29 -07001896 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1897 android:value="true" />
1898 </activity>
Gilles Debunnea6a8a142011-06-09 11:56:17 -07001899
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001900 <activity
Weng Su9e6966d2021-10-13 23:08:50 +08001901 android:name="Settings$WifiScanningSettingsActivity"
1902 android:label="@string/location_scanning_wifi_always_scanning_title"
1903 android:icon="@drawable/ic_homepage_location"
1904 android:exported="true"
1905 android:permission="android.permission.CHANGE_WIFI_STATE"
1906 android:configChanges="orientation|keyboardHidden|screenSize">
1907 <intent-filter android:priority="1">
1908 <action android:name="android.settings.WIFI_SCANNING_SETTINGS" />
1909 <category android:name="android.intent.category.DEFAULT" />
1910 </intent-filter>
1911 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1912 android:value="com.android.settings.location.WifiScanningFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001913 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1914 android:value="@string/menu_key_location"/>
Weng Su9e6966d2021-10-13 23:08:50 +08001915 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1916 android:value="true" />
1917 </activity>
1918
1919 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001920 android:name=".Settings$SecurityDashboardActivity"
1921 android:label="@string/security_settings_title"
1922 android:icon="@drawable/ic_homepage_security"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001923 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001924 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001925 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001926 <action android:name="android.settings.SECURITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08001927 <category android:name="android.intent.category.BROWSABLE" />
Chia-chi Yeh9cec6982009-09-22 23:59:01 +08001928 <action android:name="android.credentials.UNLOCK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001929 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001930 </intent-filter>
1931 <intent-filter>
1932 <action android:name="android.intent.action.MAIN" />
1933 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001934 <category android:name="android.intent.category.VOICE_LAUNCH" />
1935 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001936 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb9164562017-11-03 09:35:12 -07001937 android:value="com.android.settings.security.SecuritySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08001938 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1939 android:value="@string/menu_key_security"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01001940 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
1941 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07001942 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001943
Yuri Ufimtsev4eea1262021-12-03 15:43:11 +00001944 <activity
1945 android:name="Settings$SecurityAdvancedSettings"
1946 android:label="@string/security_advanced_settings"
1947 android:exported="true"
1948 android:icon="@drawable/ic_settings_security">
1949 <intent-filter android:priority="1">
1950 <action android:name="com.android.settings.security.SECURITY_ADVANCED_SETTINGS" />
1951 <category android:name="android.intent.category.DEFAULT" />
1952 </intent-filter>
1953 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1954 android:value="com.android.settings.security.SecurityAdvancedSettings" />
Simon Wingroveea8a4ad2022-10-17 15:05:15 +01001955 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1956 android:value="@string/menu_key_security"/>
Yuri Ufimtsev4eea1262021-12-03 15:43:11 +00001957 </activity>
1958
Prabal Singh52ba1332022-12-06 14:28:10 +00001959 <activity
1960 android:name="Settings$MoreSecurityPrivacySettingsActivity"
1961 android:label="@string/more_security_privacy_settings"
1962 android:exported="true">
1963 <intent-filter android:priority="1">
1964 <action android:name="com.android.settings.MORE_SECURITY_PRIVACY_SETTINGS" />
1965 <category android:name="android.intent.category.DEFAULT" />
1966 </intent-filter>
Prabal Singh9afbd452022-12-19 00:28:36 +00001967 <intent-filter>
1968 <action android:name="android.settings.PRIVACY_ADVANCED_SETTINGS" />
1969 <category android:name="android.intent.category.DEFAULT" />
1970 </intent-filter>
Prabal Singh52ba1332022-12-06 14:28:10 +00001971 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1972 android:value="com.android.settings.safetycenter.MoreSecurityPrivacyFragment" />
1973 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
1974 android:value="@string/menu_key_safety_center"/>
1975 </activity>
1976
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001977 <activity android:name="MonitoringCertInfoActivity"
Victor Change8a46f22016-04-19 17:45:07 +01001978 android:label=""
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001979 android:theme="@style/Transparent"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001980 android:exported="true"
Fan Zhang416ff0a2018-10-26 15:39:39 -07001981 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001982 <intent-filter android:priority="1">
1983 <action android:name="com.android.settings.MONITORING_CERT_INFO" />
1984 <category android:name="android.intent.category.DEFAULT" />
1985 </intent-filter>
Maggie Benthall9d6c40e2013-09-05 15:33:58 -04001986 </activity>
1987
Fan Zhangdb26cfb2018-02-07 17:32:17 -08001988 <activity
1989 android:name="Settings$TrustedCredentialsSettingsActivity"
1990 android:label="@string/trusted_credentials"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07001991 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08001992 android:icon="@drawable/ic_settings_security">
Dianne Hackborn0702e872015-02-20 12:48:32 -08001993 <intent-filter android:priority="1">
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04001994 <action android:name="com.android.settings.TRUSTED_CREDENTIALS" />
1995 <action android:name="com.android.settings.TRUSTED_CREDENTIALS_USER" />
1996 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08001997 </intent-filter>
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04001998 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
1999 android:value="com.android.settings.TrustedCredentialsSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002000 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2001 android:value="@string/menu_key_security"/>
Victor Chang37afa282016-04-07 21:20:38 +01002002 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2003 android:value="true" />
Geoffrey Borggaardfc6bc202013-08-09 11:44:42 -04002004 </activity>
2005
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002006 <activity android:name="Settings$PrivacySettingsActivity"
Amith Yamasanie65c9432009-09-22 13:50:19 -07002007 android:label="@string/privacy_settings_title"
Jason Monk4da79e02015-09-10 10:54:36 -04002008 android:icon="@drawable/ic_settings_backup"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002009 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002010 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002011 <intent-filter>
2012 <action android:name="android.intent.action.MAIN" />
2013 <category android:name="android.intent.category.DEFAULT" />
Amith Yamasanie65c9432009-09-22 13:50:19 -07002014 <category android:name="android.intent.category.VOICE_LAUNCH" />
2015 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002016 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
sunnyshao15ec2cf2018-03-29 19:50:20 +08002017 android:value="com.android.settings.backup.PrivacySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002018 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2019 android:value="@string/menu_key_privacy"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002020 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2021 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002022 </activity>
Amith Yamasanie65c9432009-09-22 13:50:19 -07002023
Fan Zhang11482d22019-02-06 10:37:03 -08002024 <activity android:name="Settings$PrivacyDashboardActivity"
2025 android:label="@string/privacy_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002026 android:exported="true"
Fan Zhang11482d22019-02-06 10:37:03 -08002027 android:icon="@drawable/ic_settings_privacy">
2028 <intent-filter>
2029 <action android:name="android.settings.PRIVACY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002030 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhang11482d22019-02-06 10:37:03 -08002031 <category android:name="android.intent.category.DEFAULT" />
2032 </intent-filter>
Felipe Lemea71991a2019-03-07 15:33:51 -08002033 <intent-filter android:priority="1">
2034 <action android:name="android.settings.REQUEST_ENABLE_CONTENT_CAPTURE" />
2035 <category android:name="android.intent.category.DEFAULT" />
2036 </intent-filter>
Fan Zhang11482d22019-02-06 10:37:03 -08002037 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2038 android:value="com.android.settings.privacy.PrivacyDashboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002039 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2040 android:value="@string/menu_key_privacy"/>
tmfangbf2989a2019-04-24 10:29:46 +08002041 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2042 android:value="true" />
Fan Zhang11482d22019-02-06 10:37:03 -08002043 </activity>
2044
Nate Myrend1749cf2022-04-22 13:58:50 -07002045 <activity android:name="Settings$PrivacyControlsActivity"
2046 android:label="@string/privacy_controls_title"
2047 android:exported="true"
2048 android:icon="@drawable/ic_settings_privacy">
2049 <intent-filter android:priority="1">
2050 <action android:name="android.settings.PRIVACY_CONTROLS" />
2051 <category android:name="android.intent.category.DEFAULT" />
2052 </intent-filter>
2053 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2054 android:value="com.android.settings.privacy.PrivacyControlsFragment" />
2055 </activity>
2056
alinasuarez6ffa9da2021-07-14 18:59:31 +00002057 <activity android:name=".development.tare.TareHomePage"
2058 android:label="@string/tare_settings"
2059 android:exported="false" />
2060
alinasuarezaef6ac22021-07-30 20:25:19 +00002061 <activity android:name=".development.tare.DropdownActivity"
2062 android:exported="false" />
2063
Christopher Tate4f338782011-07-25 12:09:10 -07002064 <activity android:name="SetFullBackupPassword"
Doris Ling03a3b512017-10-18 14:25:01 -07002065 android:label="@string/local_backup_password_title"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002066 android:exported="false" />
Christopher Tate4f338782011-07-25 12:09:10 -07002067
Eran Messeri1e9bd272019-01-24 10:12:01 +00002068 <activity android:name=".security.CredentialStorage"
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002069 android:theme="@style/Transparent"
Amith Yamasanib9812022011-08-26 15:39:16 -07002070 android:launchMode="singleTop"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002071 android:exported="true"
Gilles Debunneab189bd2011-07-06 13:10:16 -07002072 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002073 <intent-filter android:priority="1">
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002074 <action android:name="com.android.credentials.INSTALL" />
Chia-chi Yeh91d65a22011-01-20 18:46:01 +08002075 <action android:name="com.android.credentials.RESET" />
2076 <category android:name="android.intent.category.DEFAULT" />
2077 </intent-filter>
2078 </activity>
2079
Alex Johnstonc0c75a32019-10-18 14:20:27 +01002080 <activity android:name=".security.InstallCaCertificateWarning"
2081 android:theme="@style/GlifV3Theme.Light"
2082 android:exported="false">
2083 </activity>
2084
Alex Johnston580b7af2020-11-26 12:40:38 +00002085 <activity android:name=".security.RequestManageCredentials"
Alex Johnston8d06d632021-06-21 23:33:17 +01002086 android:theme="@style/Theme.SubSettings"
Alex Johnston580b7af2020-11-26 12:40:38 +00002087 android:exported="true">
2088 <intent-filter>
2089 <action android:name="android.security.MANAGE_CREDENTIALS"/>
2090 <category android:name="android.intent.category.DEFAULT"/>
2091 </intent-filter>
2092 </activity>
2093
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002094 <activity
2095 android:name="Settings$DeviceAdminSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002096 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002097 android:label="@string/device_admin_settings_title">
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002098 <intent-filter>
2099 <action android:name="android.intent.action.MAIN" />
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002100 <category android:name="android.intent.category.DEFAULT" />
2101 <category android:name="android.intent.category.VOICE_LAUNCH" />
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002102 </intent-filter>
Amith Yamasania1d01842011-01-24 16:02:11 -08002103 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangca6d86c2018-06-14 12:52:06 -07002104 android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002105 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2106 android:value="@string/menu_key_security"/>
Dianne Hackbornfeff6522010-01-12 18:18:05 -08002107 </activity>
2108
Amith Yamasaniaf925282011-11-10 15:28:59 -08002109 <!-- Keep compatibility with old shortcuts. -->
2110 <activity-alias android:name="DeviceAdminSettings"
2111 android:label="@string/device_admin_settings_title"
Amith Yamasaniaf925282011-11-10 15:28:59 -08002112 android:exported="true"
2113 android:targetActivity="Settings$DeviceAdminSettingsActivity">
2114 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangca6d86c2018-06-14 12:52:06 -07002115 android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002116 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2117 android:value="@string/menu_key_security"/>
Amith Yamasaniaf925282011-11-10 15:28:59 -08002118 </activity-alias>
2119
Fan Zhangca6d86c2018-06-14 12:52:06 -07002120 <activity android:name=".applications.specialaccess.deviceadmin.DeviceAdminAdd"
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002121 android:label="@string/device_admin_add_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002122 android:exported="true"
Tsung-Mao Fangefaf49c2021-06-29 14:40:31 +08002123 android:clearTaskOnLaunch="true"
2124 android:theme="@style/Theme.Settings.NoActionBar">
Tsung-Mao Fang56e9b252022-03-16 18:03:40 +08002125 <intent-filter android:priority="1000">
Dianne Hackborn28429032010-01-25 18:56:17 -08002126 <action android:name="android.app.action.ADD_DEVICE_ADMIN" />
2127 <category android:name="android.intent.category.DEFAULT" />
2128 </intent-filter>
2129 </activity>
2130
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002131 <activity android:name=".applications.specialaccess.deviceadmin.ProfileOwnerAdd"
2132 android:excludeFromRecents="true"
2133 android:theme="@style/Transparent"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002134 android:exported="true"
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002135 android:clearTaskOnLaunch="true">
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002136 <intent-filter android:priority="1000">
2137 <action android:name="android.app.action.SET_PROFILE_OWNER" />
2138 <category android:name="android.intent.category.DEFAULT" />
2139 </intent-filter>
Michael Wachenschwanz35eef602019-04-25 16:07:39 -07002140 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002141
2142 <activity
2143 android:name="Settings$UsageAccessSettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02002144 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002145 android:exported="true"
Fan Zhangc7635e52019-03-04 14:27:08 -08002146 android:label="@string/usage_access_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002147 <intent-filter android:priority="1">
2148 <action android:name="android.settings.USAGE_ACCESS_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002149 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002150 <category android:name="android.intent.category.DEFAULT" />
2151 </intent-filter>
Dianne Hackbornb51253c2014-08-12 15:08:04 -07002152 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07002153 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002154 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2155 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08002156 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2157 android:value="true" />
Dianne Hackbornb51253c2014-08-12 15:08:04 -07002158 </activity>
2159
Fan Zhang104ee2e2018-09-20 16:21:53 -07002160 <activity
2161 android:name="Settings$AppUsageAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002162 android:exported="true"
Arc Wang358dd2b2022-05-06 04:07:50 +00002163 android:label="@string/usage_access_title">
Fan Zhang104ee2e2018-09-20 16:21:53 -07002164 <intent-filter>
2165 <action android:name="android.settings.USAGE_ACCESS_SETTINGS"/>
2166 <category android:name="android.intent.category.DEFAULT"/>
2167 <data android:scheme="package"/>
2168 </intent-filter>
2169 <meta-data
2170 android:name="com.android.settings.FRAGMENT_CLASS"
2171 android:value="com.android.settings.applications.UsageAccessDetails"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08002172 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2173 android:value="@string/menu_key_apps"/>
Fan Zhang104ee2e2018-09-20 16:21:53 -07002174 </activity>
2175
Jason Monkb7e43802016-06-06 16:01:58 -04002176 <activity android:name="Settings$IccLockSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002177 android:exported="true"
Bonian Chencd1fd102020-02-10 02:38:25 +08002178 android:label="@string/sim_lock_settings">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002179 <intent-filter>
2180 <action android:name="android.intent.action.MAIN" />
2181 <category android:name="android.intent.category.DEFAULT" />
2182 <category android:name="android.intent.category.VOICE_LAUNCH" />
2183 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -04002184 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2185 android:value="com.android.settings.IccLockSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002186 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2187 android:value="@string/menu_key_security"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002188 </activity>
2189
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002190 <activity
2191 android:name="Settings$AccessibilitySettingsActivity"
2192 android:label="@string/accessibility_settings"
2193 android:icon="@drawable/ic_homepage_accessibility"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002194 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002195 android:configChanges="orientation|keyboardHidden|screenSize">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002196 <intent-filter android:priority="1">
2197 <action android:name="android.settings.ACCESSIBILITY_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002198 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002199 <category android:name="android.intent.category.DEFAULT" />
2200 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07002201 <intent-filter android:priority="60">
svetoslavganova05d0dc2009-05-14 22:26:34 -07002202 <action android:name="android.intent.action.MAIN" />
Costin Manolache672b3c62011-07-21 10:38:15 -07002203 <category android:name="com.android.settings.SHORTCUT" />
svetoslavganova05d0dc2009-05-14 22:26:34 -07002204 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002205 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Alan Viverette341ff662013-07-18 17:49:33 -07002206 android:value="com.android.settings.accessibility.AccessibilitySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002207 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2208 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002209 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2210 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002211 </activity>
Michael Chan732c1da2010-04-06 14:49:30 -07002212
Jackal Guo29365512019-02-14 15:19:53 +08002213 <activity
2214 android:name="Settings$AccessibilityDetailsSettingsActivity"
2215 android:label="@string/accessibility_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002216 android:exported="true"
Jackal Guo29365512019-02-14 15:19:53 +08002217 android:permission="android.permission.OPEN_ACCESSIBILITY_DETAILS_SETTINGS">
2218 <intent-filter android:priority="1">
2219 <action android:name="android.settings.ACCESSIBILITY_DETAILS_SETTINGS" />
2220 <category android:name="android.intent.category.DEFAULT" />
2221 </intent-filter>
2222 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2223 android:value="com.android.settings.accessibility.AccessibilityDetailsSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002224 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2225 android:value="@string/menu_key_accessibility"/>
Jackal Guo29365512019-02-14 15:19:53 +08002226 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2227 android:value="true" />
2228 </activity>
2229
Anna Galuszab1795f52016-01-08 14:37:16 -08002230 <activity android:name=".accessibility.AccessibilitySettingsForSetupWizardActivity"
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002231 android:icon="@drawable/ic_accessibility_suggestion"
Anna Galuszab1795f52016-01-08 14:37:16 -08002232 android:label="@string/vision_settings_title"
Peter_Liangd2fc78d2022-03-09 21:17:35 +08002233 android:exported="true">
Anna Galuszab1795f52016-01-08 14:37:16 -08002234 <intent-filter android:priority="1">
2235 <action android:name="android.settings.ACCESSIBILITY_SETTINGS_FOR_SUW" />
2236 <category android:name="android.intent.category.DEFAULT" />
2237 </intent-filter>
cnchen7a83d512019-05-06 10:19:10 +08002238 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2239 android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" />
2240 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2241 android:value="true" />
2242 </activity>
2243
2244 <activity-alias
2245 android:name=".FontSizeSettingsForSetupWizardActivity"
2246 android:exported="true"
2247 android:targetActivity=".accessibility.AccessibilitySettingsForSetupWizardActivity">
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002248 <intent-filter>
2249 <action android:name="android.intent.action.MAIN" />
Maurice Lamf3c5b4d2017-06-08 20:17:18 -07002250 </intent-filter>
2251 <meta-data android:name="com.android.settings.title"
2252 android:resource="@string/vision_settings_suggestion_title" />
Maurice Lam992fa862017-06-09 16:14:36 -07002253 <meta-data android:name="com.android.settings.icon_tintable"
2254 android:value="true" />
Anna Galuszab1795f52016-01-08 14:37:16 -08002255 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2256 android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" />
cnchen7a83d512019-05-06 10:19:10 +08002257 </activity-alias>
Anna Galuszab1795f52016-01-08 14:37:16 -08002258
Peter_Liangefb44b72022-01-25 09:05:23 +08002259 <activity-alias
2260 android:name=".TextReadingForSetupWizardActivity"
2261 android:exported="true"
2262 android:icon="@drawable/ic_font_download"
2263 android:targetActivity=".accessibility.AccessibilitySettingsForSetupWizardActivity">
2264 <intent-filter>
2265 <action android:name="android.intent.action.MAIN" />
2266 <!-- TODO(b/1352717): Consider replacing it with another category, temporarily
2267 using an older one to avoid side problems. -->
2268 <category android:name="com.android.settings.suggested.category.DISPLAY_SETTINGS" />
2269 </intent-filter>
2270
2271 <meta-data
2272 android:name="com.android.settings.title"
Peter_Liang61264d02022-02-12 17:36:20 +08002273 android:resource="@string/accessibility_text_reading_options_suggestion_title" />
Peter_Liangefb44b72022-01-25 09:05:23 +08002274 <meta-data
2275 android:name="com.android.settings.icon_tintable"
2276 android:value="true" />
2277 <meta-data
2278 android:name="com.android.settings.FRAGMENT_CLASS"
2279 android:value="com.android.settings.accessibility.TextReadingPreferenceFragmentForSetupWizard" />
2280 </activity-alias>
2281
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002282 <activity
menghanli38714382022-09-28 13:14:51 +08002283 android:name="Settings$TextReadingSettingsActivity"
2284 android:exported="true"
2285 android:label="@string/accessibility_text_reading_options_title">
2286 <intent-filter>
menghanli0d2c2c42022-10-05 12:14:53 +08002287 <action android:name="android.settings.TEXT_READING_SETTINGS" />
menghanli38714382022-09-28 13:14:51 +08002288 <category android:name="android.intent.category.DEFAULT" />
2289 </intent-filter>
2290 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2291 android:value="com.android.settings.accessibility.TextReadingPreferenceFragment" />
2292 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2293 android:value="@string/menu_key_accessibility"/>
2294 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2295 android:value="true" />
2296 </activity>
2297
2298 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002299 android:name="Settings$AccessibilityDaltonizerSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002300 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002301 android:label="@string/accessibility_display_daltonizer_preference_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002302 <intent-filter android:priority="1">
2303 <action android:name="com.android.settings.ACCESSIBILITY_COLOR_SPACE_SETTINGS" />
2304 <category android:name="android.intent.category.DEFAULT" />
2305 </intent-filter>
Alan Viverettefc0ab212013-10-02 16:36:33 -07002306 <intent-filter>
2307 <action android:name="android.intent.action.MAIN" />
Alan Viverettefc0ab212013-10-02 16:36:33 -07002308 <category android:name="android.intent.category.DEFAULT" />
2309 </intent-filter>
2310 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2311 android:value="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002312 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2313 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002314 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2315 android:value="true" />
Alan Viverettefc0ab212013-10-02 16:36:33 -07002316 </activity>
2317
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002318 <activity
Sally9fe91b92020-10-16 22:45:27 +00002319 android:name="Settings$ReduceBrightColorsSettingsActivity"
2320 android:exported="true"
2321 android:label="@string/reduce_bright_colors_preference_title">
2322 <intent-filter android:priority="1">
2323 <action android:name="android.settings.REDUCE_BRIGHT_COLORS_SETTINGS" />
2324 <category android:name="android.intent.category.DEFAULT" />
2325 </intent-filter>
2326 <intent-filter>
2327 <action android:name="android.intent.action.MAIN" />
2328 <category android:name="android.intent.category.DEFAULT" />
2329 </intent-filter>
2330 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2331 android:value="com.android.settings.accessibility.ToggleReduceBrightColorsPreferenceFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002332 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2333 android:value="@string/menu_key_accessibility"/>
Sally9fe91b92020-10-16 22:45:27 +00002334 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2335 android:value="true" />
2336 </activity>
2337
2338 <activity
jasonwshsu9fcd1f92021-10-08 15:43:08 +08002339 android:name="Settings$AccessibilityInversionSettingsActivity"
2340 android:exported="true"
2341 android:label="@string/accessibility_display_inversion_preference_title">
2342 <intent-filter android:priority="1">
2343 <action android:name="android.settings.COLOR_INVERSION_SETTINGS" />
2344 <category android:name="android.intent.category.DEFAULT" />
2345 </intent-filter>
2346 <intent-filter>
2347 <action android:name="android.intent.action.MAIN" />
2348 <category android:name="android.intent.category.DEFAULT" />
2349 </intent-filter>
2350 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2351 android:value="com.android.settings.accessibility.ToggleColorInversionPreferenceFragment" />
2352 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2353 android:value="@string/menu_key_accessibility"/>
2354 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2355 android:value="true" />
2356 </activity>
2357
2358 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002359 android:name="Settings$CaptioningSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002360 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002361 android:label="@string/accessibility_captioning_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002362 <intent-filter android:priority="1">
2363 <action android:name="android.settings.CAPTIONING_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002364 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002365 <category android:name="android.intent.category.DEFAULT" />
2366 </intent-filter>
Alan Viverettecc0e7822013-08-06 13:53:58 -07002367 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
menghanlie5712562022-08-01 16:47:12 +08002368 android:value="com.android.settings.accessibility.CaptioningPropertiesFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002369 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2370 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002371 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2372 android:value="true" />
Alan Viverettecc0e7822013-08-06 13:53:58 -07002373 </activity>
2374
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002375 <activity
menghanli3c62eb12022-10-04 08:13:16 +08002376 android:name="Settings$ColorAndMotionActivity"
2377 android:exported="true"
2378 android:label="@string/accessibility_color_and_motion_title">
2379 <intent-filter>
menghanli0d2c2c42022-10-05 12:14:53 +08002380 <action android:name="android.settings.ACCESSIBILITY_COLOR_MOTION_SETTINGS" />
menghanli3c62eb12022-10-04 08:13:16 +08002381 <category android:name="android.intent.category.DEFAULT" />
2382 </intent-filter>
2383 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2384 android:value="com.android.settings.accessibility.ColorAndMotionFragment" />
2385 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2386 android:value="@string/menu_key_accessibility"/>
2387 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2388 android:value="true" />
2389 </activity>
2390
2391 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002392 android:name="Settings$TextToSpeechSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002393 android:exported="true"
Fan Zhangbcd8a252019-04-29 13:35:20 -07002394 android:label="@string/tts_settings">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002395 <intent-filter android:priority="1">
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002396 <action android:name="com.android.settings.TTS_SETTINGS" />
Dianne Hackborn116d85e2009-06-26 18:20:23 -07002397 <category android:name="android.intent.category.DEFAULT" />
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002398 </intent-filter>
Gilles Debunneab189bd2011-07-06 13:10:16 -07002399 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Narayan Kamathfdd94d82011-11-04 16:12:27 +00002400 android:value="com.android.settings.tts.TextToSpeechSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002401 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2402 android:value="@string/menu_key_accessibility"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002403 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2404 android:value="true" />
Jean-Michel Trivied29a652009-06-05 18:37:29 -07002405 </activity>
2406
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002407 <activity
2408 android:name="Settings$EnterprisePrivacySettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002409 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002410 android:label="@string/enterprise_privacy_settings">
Bartosz Fabianowski0e4a1e52016-11-28 19:16:34 +01002411 <intent-filter>
2412 <action android:name="android.settings.ENTERPRISE_PRIVACY_SETTINGS" />
2413 <category android:name="android.intent.category.DEFAULT" />
2414 </intent-filter>
Bartosz Fabianowski05061fc2016-11-14 12:04:49 +01002415 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2416 android:value="com.android.settings.enterprise.EnterprisePrivacySettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08002417 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2418 android:value="@string/menu_key_privacy"/>
Bartosz Fabianowski05061fc2016-11-14 12:04:49 +01002419 </activity>
2420
Jim Miller9757e302010-12-17 18:23:23 -08002421 <!-- Lock screen settings -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002422 <activity android:name=".password.ConfirmDeviceCredentialActivity"
Amith Yamasani39fb0622014-12-17 10:52:52 -08002423 android:exported="true"
Mill Chen078af332019-04-04 15:39:27 -07002424 android:taskAffinity="com.android.settings.workmode"
Kevin Chynb3ee2312018-10-04 15:01:43 -07002425 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002426 <intent-filter android:priority="1">
Jim Miller75fe9e02014-08-13 14:52:52 -07002427 <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL" />
Adrian Roos5a9a3cd2017-03-30 18:02:25 -07002428 <action android:name="android.app.action.CONFIRM_FRP_CREDENTIAL" />
Rhed Jaof01b99e2023-05-18 11:16:22 +00002429 <action android:name="android.app.action.PREPARE_REPAIR_MODE_DEVICE_CREDENTIAL" />
Rhed Jaob7a4a7d2023-04-17 11:39:40 +00002430 <action android:name="android.app.action.CONFIRM_REPAIR_MODE_DEVICE_CREDENTIAL" />
Jim Miller75fe9e02014-08-13 14:52:52 -07002431 <category android:name="android.intent.category.DEFAULT" />
2432 </intent-filter>
Jay Civelli09b52282014-07-10 17:27:07 -07002433 </activity>
Maurice Lam2eb170c2017-04-28 16:18:47 -07002434 <!-- Activity alias for compatibility -->
2435 <activity-alias android:name=".ConfirmDeviceCredentialActivity"
2436 android:targetActivity=".password.ConfirmDeviceCredentialActivity"
2437 android:exported="true" />
Brian Leed4f8e582022-12-05 15:58:01 -08002438 <!-- Activity alias for remote lockscreen validation. Enforces required permission -->
2439 <activity-alias
2440 android:name=".ConfirmRemoteDeviceCredentialActivity"
2441 android:targetActivity=".password.ConfirmDeviceCredentialActivity"
2442 android:permission="android.permission.CHECK_REMOTE_LOCKSCREEN"
2443 android:exported="true">
2444 <intent-filter>
2445 <action android:name="android.app.action.CONFIRM_REMOTE_DEVICE_CREDENTIAL"/>
2446 <category android:name="android.intent.category.DEFAULT" />
2447 </intent-filter>
2448 </activity-alias>
Jay Civelli09b52282014-07-10 17:27:07 -07002449
Clara Bayarric5cde052015-10-22 17:24:43 +01002450 <!-- Note this must not be exported since it authenticates the given user -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002451 <activity android:name=".password.ConfirmDeviceCredentialActivity$InternalActivity"
Clara Bayarric5cde052015-10-22 17:24:43 +01002452 android:exported="false"
2453 android:permission="android.permission.MANAGE_USERS"
Mill Chen078af332019-04-04 15:39:27 -07002454 android:taskAffinity="com.android.settings.workmode"
Kevin Chyn127da9c2018-11-09 16:13:53 -08002455 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Clara Bayarric5cde052015-10-22 17:24:43 +01002456 <intent-filter android:priority="1">
2457 <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL_WITH_USER" />
2458 <category android:name="android.intent.category.DEFAULT" />
2459 </intent-filter>
2460 </activity>
2461
Maurice Lamecd2b7b2014-12-01 10:41:49 -08002462 <activity android:name=".SetupRedactionInterstitial"
Udam Sainidd05ab72016-03-21 17:35:08 -07002463 android:enabled="false"
2464 android:exported="true"
pastychang79614822019-01-03 10:12:54 +08002465 android:theme="@style/SudThemeGlif.DayNight"
Maurice Lam43366f12016-08-05 16:57:59 -07002466 android:label="@string/lock_screen_notifications_interstitial_title"
Udam Sainidd05ab72016-03-21 17:35:08 -07002467 android:icon="@drawable/ic_suggested_notifications">
2468 <intent-filter>
2469 <action android:name="android.intent.action.MAIN" />
Maurice Lam4331a2e2017-06-07 20:59:51 -07002470 <category android:name="com.android.settings.suggested.category.LOCK_SCREEN_REDACTION" />
Udam Sainidd05ab72016-03-21 17:35:08 -07002471 </intent-filter>
2472 <meta-data android:name="com.android.settings.require_user_type"
2473 android:value="primary" />
2474 <meta-data android:name="com.android.settings.title"
2475 android:resource="@string/notification_suggestion_title" />
2476 <meta-data android:name="com.android.settings.summary"
2477 android:resource="@string/notification_suggestion_summary" />
Maurice Lam992fa862017-06-09 16:14:36 -07002478 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Sainidd05ab72016-03-21 17:35:08 -07002479 </activity>
Maurice Lamecd2b7b2014-12-01 10:41:49 -08002480
Maurice Lamd189ac52016-06-15 13:39:34 -07002481 <activity android:name=".notification.RedactionInterstitial"
Maurice Lame0e81b62017-04-05 12:10:37 -07002482 android:theme="@style/GlifTheme.Light" />
Chris Wren51ae3322014-08-28 15:45:31 -04002483
2484 <activity android:name=".notification.RedactionSettingsStandalone"
2485 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002486 <intent-filter android:priority="1">
Chris Wren51ae3322014-08-28 15:45:31 -04002487 <action android:name="android.settings.ACTION_APP_NOTIFICATION_REDACTION" />
2488 <category android:name="android.intent.category.DEFAULT" />
2489 </intent-filter>
2490 </activity>
Jay Civelli09b52282014-07-10 17:27:07 -07002491
Maurice Lam2eb170c2017-04-28 16:18:47 -07002492 <activity android:name=".password.ConfirmLockPattern"
Maurice Lame0e81b62017-04-05 12:10:37 -07002493 android:theme="@style/GlifTheme.Light"/>
Michael Chan503c2362009-12-08 22:18:23 -08002494
Maurice Lam2eb170c2017-04-28 16:18:47 -07002495 <activity android:name=".password.ConfirmLockPassword"
Jorim Jaggiff41a9a2015-06-09 15:31:28 -07002496 android:windowSoftInputMode="stateHidden|adjustResize"
Maurice Lame0e81b62017-04-05 12:10:37 -07002497 android:theme="@style/GlifTheme.Light"/>
Jim Miller9757e302010-12-17 18:23:23 -08002498
Pavel Grafov04f783c2020-02-13 21:39:37 +00002499 <activity android:name=".password.ForgotPasswordActivity"
Oli Thompsoncff34af2022-10-31 14:27:17 +00002500 android:theme="@style/GlifV3Theme.DayNight"
Pavel Grafov04f783c2020-02-13 21:39:37 +00002501 android:exported="false"/>
2502
Joe Bolingera8808f72021-06-10 13:36:38 -07002503 <activity android:name=".biometrics.face.FaceEnrollParentalConsent"
2504 android:exported="false"
2505 android:screenOrientation="portrait"/>
2506
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002507 <activity android:name=".biometrics.face.FaceEnrollIntroduction"
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002508 android:exported="true"
2509 android:screenOrientation="portrait">
Curtis Belmonte3de8abe2021-11-02 14:03:47 -07002510 <intent-filter>
2511 <action android:name="android.settings.FACE_ENROLL"/>
2512 <category android:name="android.intent.category.DEFAULT"/>
2513 </intent-filter>
2514 </activity>
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002515
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002516 <activity android:name=".biometrics.face.FaceEnrollIntroductionInternal"
2517 android:exported="false"
2518 android:screenOrientation="portrait"
2519 android:taskAffinity="com.android.settings.root" />
2520
joshmccloskey04582622019-05-06 21:42:14 -07002521 <activity android:name=".biometrics.face.FaceEnrollEducation"
2522 android:exported="false"
2523 android:screenOrientation="portrait"/>
2524
Kevin Chyn22b4edd2018-07-30 19:20:01 -07002525 <activity android:name=".biometrics.face.FaceEnrollEnrolling"
2526 android:exported="false"
2527 android:screenOrientation="portrait"/>
2528
2529 <activity android:name=".biometrics.face.FaceEnrollFinish"
2530 android:exported="false"
2531 android:screenOrientation="portrait"/>
Kevin Chyn4882e872018-06-25 17:58:31 -07002532
Joe Bolingerfb515ed2021-06-16 14:07:37 -07002533 <activity android:name=".biometrics.BiometricHandoffActivity"
Joe Bolingerdde461d2021-12-01 00:59:57 +00002534 android:exported="false"/>
Joe Bolingerfb515ed2021-06-16 14:07:37 -07002535
Kevin Chyn5ab064f2019-04-12 15:19:12 -07002536 <!-- Must not be exported -->
2537 <activity android:name=".biometrics.BiometricEnrollActivity$InternalActivity"
2538 android:exported="false"
2539 android:theme="@style/GlifTheme.Light"/>
2540
Kevin Chyn66d09a42018-10-31 13:30:44 -07002541 <activity android:name=".biometrics.BiometricEnrollActivity"
2542 android:exported="true"
Milton Wua4f30402022-04-18 17:18:57 +08002543 android:configChanges="orientation|screenSize|keyboard|keyboardHidden|smallestScreenSize|screenLayout|density"
Kevin Chyn66d09a42018-10-31 13:30:44 -07002544 android:theme="@style/GlifTheme.Light">
2545 <intent-filter>
2546 <action android:name="android.settings.BIOMETRIC_ENROLL" />
Han Xub7d10772022-08-15 19:19:55 +08002547 <category android:name="android.intent.category.BROWSABLE" />
Kevin Chyn66d09a42018-10-31 13:30:44 -07002548 <category android:name="android.intent.category.DEFAULT" />
2549 </intent-filter>
2550 </activity>
2551
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002552 <activity android:name=".biometrics.fingerprint.FingerprintSettings"
2553 android:exported="false"
2554 android:taskAffinity="com.android.settings.root" />
Kevin Chyn871e55f2018-06-25 16:50:52 -07002555 <activity android:name=".biometrics.fingerprint.FingerprintEnrollFindSensor" android:exported="false"/>
2556 <activity android:name=".biometrics.fingerprint.FingerprintEnrollEnrolling" android:exported="false"/>
2557 <activity android:name=".biometrics.fingerprint.FingerprintEnrollFinish" android:exported="false"/>
Joe Bolingera8808f72021-06-10 13:36:38 -07002558 <activity android:name=".biometrics.fingerprint.FingerprintEnrollParentalConsent" android:exported="false"/>
Kevin Chyn871e55f2018-06-25 16:50:52 -07002559 <activity android:name=".biometrics.fingerprint.FingerprintEnrollIntroduction"
Kevin Chyn42ae10e2017-10-13 16:34:05 -07002560 android:exported="true"
2561 android:theme="@style/GlifTheme.Light">
2562 <intent-filter>
2563 <action android:name="android.settings.FINGERPRINT_ENROLL" />
Han Xub7d10772022-08-15 19:19:55 +08002564 <category android:name="android.intent.category.BROWSABLE" />
Kevin Chyn42ae10e2017-10-13 16:34:05 -07002565 <category android:name="android.intent.category.DEFAULT" />
2566 </intent-filter>
2567 </activity>
Maurice Lam8d1f9c92015-07-09 16:38:37 -07002568
Milton Wub9b8b8a2022-09-14 14:26:05 +08002569 <activity android:name=".biometrics2.ui.view.FingerprintEnrollmentActivity"
2570 android:exported="true"
2571 android:permission="android.permission.MANAGE_FINGERPRINT"
2572 android:theme="@style/GlifTheme.Light"/>
2573
Yuri Ufimtsevbe982452022-03-09 09:49:15 +00002574 <activity android:name=".biometrics.fingerprint.FingerprintEnrollIntroductionInternal"
2575 android:exported="false"
2576 android:theme="@style/GlifTheme.Light"
2577 android:taskAffinity="com.android.settings.root" />
2578
Kevin Chyn871e55f2018-06-25 16:50:52 -07002579 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFindSensor" android:exported="false"/>
2580 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollEnrolling" android:exported="false"/>
2581 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFinish" android:exported="false"/>
2582 <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollIntroduction"
Maurice Lame1eaed02015-07-08 16:59:59 -07002583 android:exported="true"
Maurice Lam8d1f9c92015-07-09 16:38:37 -07002584 android:permission="android.permission.MANAGE_FINGERPRINT"
Maurice Lame0e81b62017-04-05 12:10:37 -07002585 android:theme="@style/GlifTheme.Light">
Maurice Lame1eaed02015-07-08 16:59:59 -07002586 <intent-filter>
2587 <action android:name="android.settings.FINGERPRINT_SETUP" />
2588 <category android:name="android.intent.category.DEFAULT" />
2589 </intent-filter>
2590 </activity>
Jim Miller94d4bd92015-02-19 21:04:57 -08002591
Kevin Chyn871e55f2018-06-25 16:50:52 -07002592 <activity android:name=".biometrics.fingerprint.FingerprintSuggestionActivity"
Maurice Lam34a181a2017-06-20 20:00:54 -07002593 android:exported="true"
2594 android:permission="android.permission.MANAGE_FINGERPRINT"
2595 android:icon="@drawable/ic_suggestion_fingerprint"
2596 android:theme="@style/GlifTheme.Light">
Maurice Lam34a181a2017-06-20 20:00:54 -07002597 <meta-data android:name="com.android.settings.require_feature"
2598 android:value="android.hardware.fingerprint" />
2599 <meta-data android:name="com.android.settings.title"
2600 android:resource="@string/suggestion_additional_fingerprints" />
2601 <meta-data android:name="com.android.settings.summary"
2602 android:resource="@string/suggestion_additional_fingerprints_summary" />
Maurice Lam34a181a2017-06-20 20:00:54 -07002603 </activity>
2604
cnchend2159992019-03-22 19:48:04 +08002605 <activity-alias android:name=".SetupFingerprintSuggestionActivity"
2606 android:enabled="false"
2607 android:exported="true"
2608 android:targetActivity=".biometrics.fingerprint.FingerprintSuggestionActivity">
2609 <intent-filter>
2610 <action android:name="android.intent.action.MAIN" />
2611 <category android:name="com.android.settings.suggested.category.FINGERPRINT_ENROLL" />
2612 </intent-filter>
2613 <meta-data android:name="com.android.settings.require_feature"
2614 android:value="android.hardware.fingerprint" />
2615 <meta-data android:name="com.android.settings.title"
2616 android:resource="@string/suggestion_additional_fingerprints" />
2617 <meta-data android:name="com.android.settings.summary"
2618 android:resource="@string/suggestion_additional_fingerprints_summary" />
Cating Lin84e6a472019-04-24 09:25:55 +08002619 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
cnchend2159992019-03-22 19:48:04 +08002620 </activity-alias>
2621
yuanjiahsu06466b02023-01-13 08:47:49 +08002622 <activity android:name=".biometrics.activeunlock.ActiveUnlockRequireBiometricSetup" android:exported="false"/>
2623
Paul Lawrence20444042014-07-07 13:10:16 -07002624 <!-- Note this must not be exported since it returns the password in the intent -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002625 <activity android:name=".password.ConfirmLockPattern$InternalActivity"
Andres Morales02d54872015-04-14 11:33:45 -07002626 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002627 android:theme="@style/GlifTheme.Light"/>
Paul Lawrence20444042014-07-07 13:10:16 -07002628
2629 <!-- Note this must not be exported since it returns the password in the intent -->
Maurice Lam2eb170c2017-04-28 16:18:47 -07002630 <activity android:name=".password.ConfirmLockPassword$InternalActivity"
Paul Lawrence20444042014-07-07 13:10:16 -07002631 android:exported="false"
Xiyuan Xia4a8edaf2015-05-20 14:26:15 -07002632 android:windowSoftInputMode="adjustResize"
Maurice Lame0e81b62017-04-05 12:10:37 -07002633 android:theme="@style/GlifTheme.Light"/>
Paul Lawrence20444042014-07-07 13:10:16 -07002634
Maurice Lam2eb170c2017-04-28 16:18:47 -07002635 <activity android:name=".password.SetupChooseLockGeneric"
Maurice Lame0e81b62017-04-05 12:10:37 -07002636 android:theme="@style/GlifTheme.Light"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002637 android:exported="true"
Lucky Zhang36ec2742014-12-05 18:20:27 -08002638 android:label="@string/lock_settings_picker_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002639 <intent-filter android:priority="1">
Maurice Lam52c75ba2014-11-25 14:06:38 -08002640 <action android:name="com.android.settings.SETUP_LOCK_SCREEN" />
2641 <category android:name="android.intent.category.DEFAULT" />
2642 </intent-filter>
2643 </activity>
2644
Doris Ling069d2932018-11-13 14:54:26 -08002645 <activity android:name=".password.SetupChooseLockGeneric$InternalActivity"
Doris Ling069d2932018-11-13 14:54:26 -08002646 android:exported="false"
2647 android:excludeFromRecents="true" />
2648
Maurice Lam2eb170c2017-04-28 16:18:47 -07002649 <activity android:name=".password.ChooseLockGeneric"
Steven Rossb7a9e952011-10-03 10:06:44 -04002650 android:label="@string/lockpassword_choose_lock_generic_header"
Steven Ng4fdcec72016-09-26 22:13:08 +01002651 android:excludeFromRecents="true"
2652 android:exported="false" />
2653
2654 <activity android:name=".password.SetNewPasswordActivity"
2655 android:theme="@android:style/Theme.NoDisplay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002656 android:exported="true"
Steven Rossb7a9e952011-10-03 10:06:44 -04002657 android:excludeFromRecents="true" >
Dianne Hackborn0702e872015-02-20 12:48:32 -08002658 <intent-filter android:priority="1">
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002659 <action android:name="android.app.action.SET_NEW_PASSWORD" />
Benjamin Franzae07b502016-01-08 17:16:19 +00002660 <action android:name="android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD" />
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002661 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002662 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002663 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2664 android:value="true" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002665 </activity>
2666
Fan Zhang31f699c2017-09-28 17:17:44 -07002667 <activity android:name=".password.ScreenLockSuggestionActivity"
Joe Bolinger8d508282022-03-24 00:39:20 +00002668 android:exported="false"
Mill Chen71958002019-01-23 10:44:39 +08002669 android:icon="@drawable/ic_suggestion_security">
Udam Saini7ad4a172016-01-25 11:22:33 -08002670 <intent-filter android:priority="1">
2671 <action android:name="android.intent.action.MAIN" />
Raff Tsai7c834632019-03-22 12:00:00 +08002672 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002673 </intent-filter>
Raff Tsai7c834632019-03-22 12:00:00 +08002674 <meta-data android:name="com.android.settings.dismiss" android:value="14" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002675 <meta-data android:name="com.android.settings.title"
2676 android:resource="@string/suggested_lock_settings_title" />
2677 <meta-data android:name="com.android.settings.summary"
2678 android:resource="@string/suggested_lock_settings_summary" />
Maurice Lam992fa862017-06-09 16:14:36 -07002679 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Saini62a72802016-01-28 11:09:29 -08002680 </activity>
Udam Saini7ad4a172016-01-25 11:22:33 -08002681
Kevin Chyn871e55f2018-06-25 16:50:52 -07002682 <activity android:name=".biometrics.fingerprint.FingerprintEnrollSuggestionActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002683 android:exported="true"
Udam Sainiaafbba12016-02-02 10:33:40 -08002684 android:icon="@drawable/ic_suggestion_fingerprint">
Udam Saini7ad4a172016-01-25 11:22:33 -08002685 <intent-filter android:priority="2">
2686 <action android:name="android.intent.action.MAIN" />
Fan Zhangaf91c1f2017-06-03 15:24:11 -07002687 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002688 </intent-filter>
Raff Tsai165708d2019-03-21 15:46:48 +08002689 <meta-data android:name="com.android.settings.dismiss" android:value="14" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002690 <meta-data android:name="com.android.settings.require_feature"
2691 android:value="android.hardware.fingerprint" />
2692 <meta-data android:name="com.android.settings.title"
TreeHugger Robota4e3c142016-07-12 21:42:03 +00002693 android:resource="@string/suggested_fingerprint_lock_settings_title" />
Udam Saini7ad4a172016-01-25 11:22:33 -08002694 <meta-data android:name="com.android.settings.summary"
Udam Sainiaafbba12016-02-02 10:33:40 -08002695 android:resource="@string/suggested_fingerprint_lock_settings_summary" />
Doris Lingea85c0a2018-04-30 14:08:55 -07002696 <meta-data android:name="com.android.settings.icon_tintable" android:value="true" />
Udam Saini62a72802016-01-28 11:09:29 -08002697 </activity>
Udam Saini7ad4a172016-01-25 11:22:33 -08002698
Maurice Lam2eb170c2017-04-28 16:18:47 -07002699 <activity android:name=".password.ChooseLockGeneric$InternalActivity"
2700 android:exported="false"
Amith Yamasani66026772013-09-25 14:05:33 -07002701 android:label="@string/lockpassword_choose_lock_generic_header"
Maurice Lam2eb170c2017-04-28 16:18:47 -07002702 android:excludeFromRecents="true" />
Amith Yamasani66026772013-09-25 14:05:33 -07002703
Maurice Lam2eb170c2017-04-28 16:18:47 -07002704 <activity android:name=".password.SetupChooseLockPattern"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002705 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002706 android:theme="@style/GlifTheme.Light" />
Maurice Lam6b19fa92014-11-25 19:25:56 -08002707
Maurice Lam2eb170c2017-04-28 16:18:47 -07002708 <activity android:name=".password.ChooseLockPattern"
Maurice Lamd189ac52016-06-15 13:39:34 -07002709 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002710 android:theme="@style/GlifTheme.Light" />
Dianne Hackbornabc3dc62010-01-20 13:40:19 -08002711
Maurice Lam2eb170c2017-04-28 16:18:47 -07002712 <activity android:name=".password.SetupChooseLockPassword"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002713 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002714 android:theme="@style/GlifTheme.Light"
Maurice Lam6b19fa92014-11-25 19:25:56 -08002715 android:windowSoftInputMode="stateVisible|adjustResize" />
2716
Maurice Lam2eb170c2017-04-28 16:18:47 -07002717 <activity android:name=".password.ChooseLockPassword"
Maurice Lamd189ac52016-06-15 13:39:34 -07002718 android:exported="false"
Maurice Lame0e81b62017-04-05 12:10:37 -07002719 android:theme="@style/GlifTheme.Light"
Jim Miller165bf2f2011-01-26 16:10:26 -08002720 android:windowSoftInputMode="stateVisible|adjustResize"/>
Jim Miller00d24762009-12-22 19:04:57 -08002721
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002722 <activity
2723 android:name=".Settings$StorageDashboardActivity"
2724 android:label="@string/storage_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002725 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002726 android:icon="@drawable/ic_homepage_storage">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002727 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002728 <action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" />
2729 <action android:name="android.settings.MEMORY_CARD_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002730 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002731 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002732 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07002733 <intent-filter android:priority="50">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002734 <action android:name="android.intent.action.MAIN" />
Fan Zhang2f4355a2018-06-21 15:34:43 -07002735 <category android:name="com.android.settings.SHORTCUT" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002736 </intent-filter>
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002737 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Arc Wangfadbe5b2021-03-19 17:58:34 +08002738 android:value="com.android.settings.deviceinfo.StorageDashboardFragment" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002739 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2740 android:value="@string/menu_key_storage"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01002741 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2742 android:value="true" />
Amith Yamasani5203bdf2010-11-04 09:59:44 -07002743 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002744
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002745 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002746 android:name="Settings$PublicVolumeSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002747 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002748 android:label="@string/storage_settings_title">
Jeff Sharkey42833b22015-04-11 21:27:33 -07002749 <intent-filter>
2750 <action android:name="android.provider.action.DOCUMENT_ROOT_SETTINGS" />
2751 <category android:name="android.intent.category.DEFAULT" />
2752 <data
2753 android:scheme="content"
2754 android:host="com.android.externalstorage.documents"
2755 android:mimeType="vnd.android.document/root" />
2756 </intent-filter>
2757 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2758 android:value="com.android.settings.deviceinfo.PublicVolumeSettings" />
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 Sharkey42833b22015-04-11 21:27:33 -07002761 </activity>
Vasu Nori21809742011-01-25 13:39:16 -08002762
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002763 <activity
2764 android:name="Settings$PrivateVolumeForgetActivity"
2765 android:label="@string/storage_settings_title"
2766 android:exported="true"
2767 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS">
Jeff Sharkeya16257d2015-04-28 13:41:01 -07002768 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2769 android:value="com.android.settings.deviceinfo.PrivateVolumeForget" />
Jason Chiu646a31e2021-11-10 11:56:00 +08002770 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2771 android:value="@string/menu_key_storage"/>
Jeff Sharkeya16257d2015-04-28 13:41:01 -07002772 </activity>
2773
Jeff Sharkey94635992015-04-13 14:15:26 -07002774 <!-- Exported for SystemUI to launch into -->
2775 <activity android:name=".deviceinfo.StorageWizardInit"
sayakiitg9b432d52022-01-12 10:45:33 +00002776 android:theme="@style/GlifTheme.Light"
Jeff Sharkey2949a4a2015-04-14 16:44:34 -07002777 android:exported="true"
2778 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002779 <activity android:name=".deviceinfo.StorageWizardFormatProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002780 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002781 android:exported="false"/>
Jeff Sharkey2af67a92018-04-01 18:25:54 -06002782 <activity android:name=".deviceinfo.StorageWizardFormatSlow"
sayakiitg9b432d52022-01-12 10:45:33 +00002783 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002784 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002785 <activity android:name=".deviceinfo.StorageWizardMigrateConfirm"
sayakiitg9b432d52022-01-12 10:45:33 +00002786 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002787 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002788 <activity android:name=".deviceinfo.StorageWizardMigrateProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002789 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002790 android:exported="true"
2791 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002792 <activity android:name=".deviceinfo.StorageWizardReady"
sayakiitg9b432d52022-01-12 10:45:33 +00002793 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002794 android:exported="true"
2795 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002796
2797 <activity android:name=".deviceinfo.StorageWizardMoveConfirm"
sayakiitg9b432d52022-01-12 10:45:33 +00002798 android:theme="@style/GlifTheme.Light"
Sayak Dutta43147372022-09-14 06:50:17 +00002799 android:exported="false"/>
Jeff Sharkey94635992015-04-13 14:15:26 -07002800 <activity android:name=".deviceinfo.StorageWizardMoveProgress"
sayakiitg9b432d52022-01-12 10:45:33 +00002801 android:theme="@style/GlifTheme.Light"
Jeff Sharkeye77f0682015-04-29 11:24:57 -07002802 android:exported="true"
2803 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Jeff Sharkey94635992015-04-13 14:15:26 -07002804
Jeff Sharkey2949a4a2015-04-14 16:44:34 -07002805 <!-- Exported for SystemUI to trigger -->
2806 <receiver android:name=".deviceinfo.StorageUnmountReceiver"
2807 android:exported="true"
2808 android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
2809
Jason Monkb7e43802016-06-06 16:01:58 -04002810 <activity android:name="Settings$ApnEditorActivity"
Junda Liu76ad6352017-02-03 16:39:23 -08002811 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002812 android:exported="true"
Amith Yamasani34bd7e62013-06-07 10:19:55 -07002813 android:label="@string/apn_edit">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002814 <intent-filter>
2815 <action android:name="android.intent.action.VIEW" />
2816 <action android:name="android.intent.action.EDIT" />
2817 <category android:name="android.intent.category.DEFAULT" />
2818 <data android:mimeType="vnd.android.cursor.item/telephony-carrier" />
2819 </intent-filter>
2820
2821 <intent-filter>
2822 <action android:name="android.intent.action.INSERT" />
2823 <category android:name="android.intent.category.DEFAULT" />
2824 <data android:mimeType="vnd.android.cursor.dir/telephony-carrier" />
2825 </intent-filter>
Jason Monkb7e43802016-06-06 16:01:58 -04002826 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
tom hsu2fd7c9f2020-09-30 21:46:27 +08002827 android:value="com.android.settings.network.apn.ApnEditor" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002828 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2829 android:value="@string/menu_key_network"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002830 </activity>
2831
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002832 <activity
2833 android:name="Settings$DevelopmentSettingsDashboardActivity"
2834 android:label="@string/development_settings_title"
2835 android:icon="@drawable/ic_settings_development"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002836 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002837 android:enabled="false">
Fan Zhang4c26da92017-09-08 15:29:54 -07002838 <intent-filter android:priority="1">
2839 <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2840 <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
Joshua Duong2972bfa2020-04-10 00:22:04 -07002841 <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
Fan Zhang4c26da92017-09-08 15:29:54 -07002842 <category android:name="android.intent.category.DEFAULT" />
2843 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07002844 <intent-filter>
Fan Zhang4c26da92017-09-08 15:29:54 -07002845 <action android:name="com.android.settings.action.SETTINGS" />
Aurélien Pomini649c5082023-02-10 14:56:57 +00002846 <action android:name="com.android.intent.action.SHOW_CONTRAST_DIALOG" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002847 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07002848 <meta-data android:name="com.android.settings.order" android:value="-40"/>
Fan Zhang4c26da92017-09-08 15:29:54 -07002849 <meta-data android:name="com.android.settings.category"
2850 android:value="com.android.settings.category.ia.system" />
2851 <meta-data android:name="com.android.settings.summary"
2852 android:resource="@string/summary_empty"/>
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08002853 <meta-data android:name="com.android.settings.icon"
2854 android:resource="@drawable/ic_settings_development" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002855 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2856 android:value="com.android.settings.development.DevelopmentSettingsDashboardFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002857 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2858 android:value="@string/menu_key_system"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08002859 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2860 android:value="true" />
Fan Zhang4c26da92017-09-08 15:29:54 -07002861 </activity>
2862
Fan Zhang6359a192017-05-11 16:04:09 -07002863 <!-- The opposite of DevelopmentSettingsActivity, it's no-op and only enabled when the real
2864 activity is disabled to be CTS compliant. -->
2865 <activity
2866 android:name=".development.DevelopmentSettingsDisabledActivity"
2867 android:icon="@drawable/ic_settings_development"
2868 android:label="@string/development_settings_title"
Fan Zhang7373ec02018-08-14 13:25:47 -07002869 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002870 android:exported="true"
Fan Zhang7373ec02018-08-14 13:25:47 -07002871 android:theme="@style/Transparent">
Fan Zhang6359a192017-05-11 16:04:09 -07002872 <intent-filter android:priority="-1">
2873 <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2874 <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
2875 <category android:name="android.intent.category.DEFAULT" />
2876 </intent-filter>
2877 </activity>
2878
Fan Zhangdb26cfb2018-02-07 17:32:17 -08002879 <activity
2880 android:name="Settings$PrintSettingsActivity"
2881 android:label="@string/print_settings"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002882 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002883 android:icon="@drawable/ic_settings_print">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002884 <intent-filter android:priority="1">
2885 <action android:name="android.settings.ACTION_PRINT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08002886 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08002887 <category android:name="android.intent.category.DEFAULT" />
2888 </intent-filter>
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002889 <intent-filter>
2890 <action android:name="android.intent.action.MAIN" />
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002891 <category android:name="android.intent.category.DEFAULT" />
2892 <category android:name="android.intent.category.VOICE_LAUNCH" />
2893 </intent-filter>
2894 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2895 android:value="com.android.settings.print.PrintSettingsFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002896 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2897 android:value="@string/menu_key_connected_devices"/>
Svetoslav Ganov74648ac2013-09-04 23:52:28 -07002898 </activity>
2899
Svetoslavd9f156d2013-10-09 21:59:04 -07002900 <activity android:name="Settings$PrintJobSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002901 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08002902 android:label="@string/print_print_job">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002903 <intent-filter android:priority="1">
Svetoslavd9f156d2013-10-09 21:59:04 -07002904 <action android:name="android.settings.ACTION_PRINT_SETTINGS" />
2905 <category android:name="android.intent.category.DEFAULT" />
2906 <data android:scheme="printjob" android:pathPattern="*" />
2907 </intent-filter>
2908 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2909 android:value="com.android.settings.print.PrintJobSettingsFragment" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002910 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2911 android:value="@string/menu_key_connected_devices"/>
Svetoslavd9f156d2013-10-09 21:59:04 -07002912 </activity>
2913
Fan Zhang2907f862017-03-17 15:05:14 -07002914 <activity android:name=".development.AppPicker"
Edgar Wang3c03f0a2020-05-05 06:19:14 +08002915 android:label="@string/select_application" />
Dianne Hackborn9244df42012-02-14 13:25:41 -08002916
Joshua Duongfd009222021-07-14 16:05:57 -07002917 <activity android:name=".development.AdbQrCodeActivity" />
2918
Howard Chen5d7f3e62022-09-29 16:33:34 +08002919 <activity android:name="com.android.settings.development.DSULoader"
Howard Chend5f3a0c2019-08-29 17:31:05 +08002920 android:label="Select DSU Package"
Howard Chen5d7f3e62022-09-29 16:33:34 +08002921 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog"
2922 android:exported="true" >
2923 <intent-filter>
2924 <action android:name="android.settings.development.START_DSU_LOADER"/>
2925 <category android:name="android.intent.category.DEFAULT"/>
2926 </intent-filter>
2927 </activity>
Howard Chen60acb512019-12-02 15:34:58 +08002928 <activity android:name=".development.DSUTermsOfServiceActivity"
2929 android:label="Terms of Service"
2930 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" />
Howard Chend5f3a0c2019-08-29 17:31:05 +08002931
Varun Shah7efe9312020-03-26 23:02:50 -07002932 <activity android:name=".development.storage.BlobInfoListView"
2933 android:label="@string/shared_data_title" />
2934 <activity android:name=".development.storage.LeaseInfoListView"
2935 android:label="@string/accessor_info_title" />
2936
Gustav Sennton5b596282017-02-03 16:19:02 +00002937 <activity android:name="Settings$WebViewAppPickerActivity"
Jason Chiuae5327d2021-11-04 17:09:53 +08002938 android:label="@string/select_webview_provider_dialog_title">
2939 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2940 android:value="@string/menu_key_system"/>
2941 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002942
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002943 <activity android:name="Settings$BugReportHandlerPickerActivity"
2944 android:label="@string/bug_report_handler_title"
2945 android:exported="true"
2946 android:excludeFromRecents="true">
2947 <intent-filter>
2948 <action android:name="android.settings.BUGREPORT_HANDLER_SETTINGS" />
2949 <category android:name="android.intent.category.DEFAULT" />
2950 </intent-filter>
Paul Chang6950a802020-04-22 20:59:59 +08002951 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
2952 android:value="true" />
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002953 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
2954 android:value="com.android.settings.bugreporthandler.BugReportHandlerPicker" />
Jason Chiuae5327d2021-11-04 17:09:53 +08002955 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
2956 android:value="@string/menu_key_system"/>
Paul Chang6ae4c4d2019-11-28 22:38:49 +08002957 </activity>
2958
Jaikumar Ganesh3a76bca2009-07-16 18:41:58 -07002959 <activity android:name=".bluetooth.BluetoothPairingDialog"
Chen Chen38101d52021-10-05 17:46:02 -07002960 android:permission="android.permission.BLUETOOTH_PRIVILEGED"
Michael Chan684736a2009-09-01 18:51:04 -07002961 android:excludeFromRecents="true"
Antony Sargent4d7df062017-07-12 17:29:10 -07002962 android:windowSoftInputMode="stateVisible|adjustResize"
jackqdyulei27f62fd2019-02-22 15:31:35 -08002963 android:theme="@style/Theme.AlertDialog"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002964 android:exported="true"
jackqdyulei27f62fd2019-02-22 15:31:35 -08002965 android:taskAffinity=".bluetooth.BluetoothPairingDialog">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002966 <intent-filter android:priority="1">
Nick Pelly5ddbd942009-09-11 11:41:59 -07002967 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08002968 <category android:name="android.intent.category.DEFAULT" />
2969 </intent-filter>
2970 </activity>
2971
Michael Chane1089ad2009-09-26 06:16:17 -07002972 <activity android:name=".bluetooth.RequestPermissionActivity"
Michael Chane1089ad2009-09-26 06:16:17 -07002973 android:excludeFromRecents="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06002974 android:permission="android.permission.BLUETOOTH_CONNECT"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002975 android:exported="true"
Fan Zhanga122be12018-07-16 16:28:37 -07002976 android:theme="@style/Theme.BluetoothPermission">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002977 <intent-filter android:priority="1">
Michael Chane1089ad2009-09-26 06:16:17 -07002978 <action android:name="android.bluetooth.adapter.action.REQUEST_DISCOVERABLE" />
2979 <action android:name="android.bluetooth.adapter.action.REQUEST_ENABLE" />
Svetoslav Ganovb06766f2016-07-22 20:08:41 -07002980 <action android:name="android.bluetooth.adapter.action.REQUEST_DISABLE" />
Michael Chane1089ad2009-09-26 06:16:17 -07002981 <category android:name="android.intent.category.DEFAULT" />
2982 </intent-filter>
2983 </activity>
2984
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002985 <activity android:name=".wifi.WifiScanModeActivity"
2986 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07002987 android:exported="true"
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002988 android:theme="@style/Transparent">
Dianne Hackborn0702e872015-02-20 12:48:32 -08002989 <intent-filter android:priority="1">
Irfan Sheriff50f341d2013-03-18 13:11:47 -07002990 <action android:name="android.net.wifi.action.REQUEST_SCAN_ALWAYS_AVAILABLE" />
2991 <category android:name="android.intent.category.DEFAULT" />
2992 </intent-filter>
2993 </activity>
2994
Jerry Zhangd18d6f12018-01-11 16:47:14 -08002995 <activity android:name=".Settings$UsbDetailsActivity"
2996 android:excludeFromRecents="true"
2997 android:permission="android.permission.MANAGE_USB"
2998 android:exported="true">
2999 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3000 android:value="com.android.settings.connecteddevice.usb.UsbDetailsFragment"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08003001 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3002 android:value="@string/menu_key_connected_devices"/>
Jerry Zhangd18d6f12018-01-11 16:47:14 -08003003 </activity>
3004
Michal Karpinski707f42f2016-02-25 17:29:43 +00003005 <activity android:name=".RemoteBugreportActivity"
3006 android:excludeFromRecents="true"
3007 android:exported="true"
3008 android:permission="android.permission.DUMP"
tmfang5ade2f12018-07-30 13:49:43 +08003009 android:theme="@style/Theme.AlertDialog">
Michal Karpinski707f42f2016-02-25 17:29:43 +00003010 <intent-filter>
3011 <action android:name="android.settings.SHOW_REMOTE_BUGREPORT_DIALOG" />
3012 <category android:name="android.intent.category.DEFAULT" />
3013 </intent-filter>
3014 </activity>
3015
Marie Janssend06d83c2017-02-14 18:49:17 -08003016 <service android:name=".bluetooth.BluetoothPairingService" />
3017
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003018 <receiver android:name=".bluetooth.BluetoothPairingRequest"
3019 android:exported="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003020 <intent-filter>
Nick Pelly5ddbd942009-09-11 11:41:59 -07003021 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" />
Alice Kuoebea73e2021-10-13 18:43:47 +08003022 <action android:name="android.bluetooth.action.CSIS_SET_MEMBER_AVAILABLE"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003023 </intent-filter>
3024 </receiver>
3025
Jaikumar Ganeshe0b01ad2011-09-07 17:19:19 -07003026 <receiver android:name=".bluetooth.BluetoothPermissionRequest"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003027 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06003028 android:permission="android.permission.BLUETOOTH_CONNECT">
Matthew Xiedbed1202011-06-27 18:21:25 -07003029 <intent-filter>
3030 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" />
3031 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" />
3032 </intent-filter>
3033 </receiver>
3034
3035 <activity android:name=".bluetooth.BluetoothPermissionActivity"
3036 android:label="@string/bluetooth_connection_permission_request"
3037 android:excludeFromRecents="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06003038 android:permission="android.permission.BLUETOOTH_CONNECT"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003039 android:exported="true"
Hugh Chen07a46752022-08-11 09:37:23 +00003040 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003041 <intent-filter android:priority="1">
Matthew Xiedbed1202011-06-27 18:21:25 -07003042 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" />
3043 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" />
3044 <category android:name="android.intent.category.DEFAULT" />
3045 </intent-filter>
3046 </activity>
3047
Joe Onoratode5603722009-03-24 17:49:03 -07003048 <activity android:name="ActivityPicker"
3049 android:label="@string/activity_picker_label"
Arc Wang5a298fb2020-06-30 14:14:02 +08003050 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003051 android:exported="true"
Dianne Hackbornec549972009-09-23 22:24:22 -07003052 android:finishOnCloseSystemDialogs="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003053 <intent-filter android:priority="1">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003054 <action android:name="android.intent.action.PICK_ACTIVITY" />
3055 <category android:name="android.intent.category.DEFAULT" />
3056 </intent-filter>
3057 </activity>
3058
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003059 <activity
3060 android:name="Settings$WifiDisplaySettingsActivity"
3061 android:label="@string/wifi_display_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003062 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003063 android:icon="@drawable/ic_cast_24dp">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003064 <intent-filter android:priority="1">
Jeff Brownff0e81e2014-08-19 17:47:54 -07003065 <action android:name="android.settings.CAST_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003066 <category android:name="android.intent.category.BROWSABLE" />
Jeff Brown9e143f52012-09-19 20:46:07 -07003067 <category android:name="android.intent.category.DEFAULT" />
3068 </intent-filter>
3069 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3070 android:value="com.android.settings.wfd.WifiDisplaySettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003071 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3072 android:value="@string/menu_key_connected_devices"/>
Jeff Brown9e143f52012-09-19 20:46:07 -07003073 </activity>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003074
Jason Monkb7e43802016-06-06 16:01:58 -04003075 <activity android:name="Settings$TestingSettingsActivity" android:label="@string/testing">
Jason Monkb7e43802016-06-06 16:01:58 -04003076 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3077 android:value="com.android.settings.TestingSettings" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003078 </activity>
3079
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003080 <receiver android:name=".TestingSettingsBroadcastReceiver"
3081 android:exported="true">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003082 <intent-filter>
Grace Jia84da1e82020-02-14 15:53:28 -08003083 <action android:name="android.telephony.action.SECRET_CODE" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003084 <data android:scheme="android_secret_code" android:host="4636" />
3085 </intent-filter>
3086 </receiver>
3087
The Android Open Source Project80a7a1d2009-03-11 12:11:59 -07003088 <!-- Standard picker for widgets -->
Joe Onoratode5603722009-03-24 17:49:03 -07003089 <activity android:name="AppWidgetPickActivity"
3090 android:label="@string/widget_picker_title"
Arc Wang5a298fb2020-06-30 14:14:02 +08003091 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003092 android:exported="true"
Joe Onorato9bcc6912011-01-10 12:55:57 -08003093 android:finishOnCloseSystemDialogs="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003094 <intent-filter android:priority="1">
The Android Open Source Project80a7a1d2009-03-11 12:11:59 -07003095 <action android:name="android.appwidget.action.APPWIDGET_PICK" />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08003096 <category android:name="android.intent.category.DEFAULT" />
3097 </intent-filter>
3098 </activity>
3099
Michael Jurkac9029d92012-04-20 01:47:44 -07003100 <activity android:name="AllowBindAppWidgetActivity"
Arc Wang5a298fb2020-06-30 14:14:02 +08003101 android:theme="@*android:style/Theme.DeviceDefault.Dialog.Alert.DayNight"
Michael Jurkac9029d92012-04-20 01:47:44 -07003102 android:finishOnCloseSystemDialogs="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003103 android:exported="true"
Michael Jurkac9029d92012-04-20 01:47:44 -07003104 android:excludeFromRecents="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003105 <intent-filter android:priority="1">
Michael Jurkac9029d92012-04-20 01:47:44 -07003106 <action android:name="android.appwidget.action.APPWIDGET_BIND" />
3107 <category android:name="android.intent.category.DEFAULT" />
3108 </intent-filter>
3109 </activity>
3110
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003111 <activity
3112 android:name="Settings$PowerUsageSummaryActivity"
3113 android:label="@string/power_usage_summary_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003114 android:exported="true"
ykhung0c3957d2023-03-09 14:28:31 +08003115 android:icon="@drawable/ic_homepage_battery"
3116 android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize">
jackqdyuleib96ccba2018-01-23 10:29:13 -08003117 <intent-filter android:priority="1">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003118 <action android:name="android.intent.action.POWER_USAGE_SUMMARY" />
3119 <category android:name="android.intent.category.DEFAULT" />
3120 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003121 <intent-filter android:priority="51">
jackqdyuleib96ccba2018-01-23 10:29:13 -08003122 <action android:name="android.intent.action.MAIN" />
jackqdyuleib96ccba2018-01-23 10:29:13 -08003123 <category android:name="com.android.settings.SHORTCUT" />
3124 </intent-filter>
Dianne Hackborn59a48602010-11-10 23:34:52 -08003125 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
xuezaiyueac731842022-06-08 21:53:23 +08003126 android:value="com.android.settings.fuelgauge.batteryusage.PowerUsageSummary" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003127 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3128 android:value="@string/menu_key_battery"/>
Dianne Hackborncbaf6ce2010-07-23 00:23:21 -07003129 </activity>
3130
Kuan Wang0a0ba912022-10-13 18:07:54 +08003131 <provider
3132 android:name=".fuelgauge.batteryusage.BatteryUsageContentProvider"
3133 android:enabled="true"
3134 android:exported="true"
3135 android:authorities="${applicationId}.battery.usage.provider"
3136 android:permission="com.android.settings.BATTERY_DATA"/>
3137
Kuan Wangbc4548b2022-12-01 17:31:29 +08003138 <provider
3139 android:name=".fuelgauge.batteryusage.bugreport.BugReportContentProvider"
3140 android:exported="false"
3141 android:authorities="${applicationId}.battery.usage.bugreport"/>
3142
Kuan Wangc28daec2023-01-16 18:40:47 +08003143 <receiver android:name="com.android.settings.fuelgauge.batteryusage.BatteryUsageBroadcastReceiver"
Kuan Wangfb136dd2022-10-18 15:03:39 +08003144 android:exported="true">
3145 <intent-filter>
Kuan Wang45be6ba2022-10-20 17:07:01 +08003146 <action android:name="android.intent.action.BATTERY_LEVEL_CHANGED"/>
Kuan Wangfb136dd2022-10-18 15:03:39 +08003147 <action android:name="com.android.settings.battery.action.CLEAR_BATTERY_CACHE_DATA"/>
Zaiyue Xueff11b8e2023-02-27 16:29:04 +08003148 <action android:name="com.android.settings.battery.action.ACTION_BATTERY_PLUGGING"/>
Kuan Wangc28daec2023-01-16 18:40:47 +08003149 <action android:name="com.android.settings.battery.action.ACTION_BATTERY_UNPLUGGING"/>
Kuan Wangfb136dd2022-10-18 15:03:39 +08003150 </intent-filter>
3151 </receiver>
3152
Kuan Wangdf05a132022-10-20 11:48:48 +08003153 <receiver
3154 android:name=".fuelgauge.batteryusage.BootBroadcastReceiver"
3155 android:exported="true">
3156 <intent-filter>
3157 <action android:name="android.intent.action.BOOT_COMPLETED"/>
Kuan Wangdf05a132022-10-20 11:48:48 +08003158 <action android:name="com.google.android.setupwizard.SETUP_WIZARD_FINISHED"/>
3159 <action android:name="com.android.settings.battery.action.PERIODIC_JOB_RECHECK"/>
3160 </intent-filter>
3161 </receiver>
3162
3163 <receiver
ykhung4c0de262022-11-10 15:38:22 +08003164 android:name=".fuelgauge.BatterySettingsMigrateChecker"
3165 android:exported="true">
3166 <intent-filter>
3167 <action android:name="android.intent.action.BOOT_COMPLETED"/>
3168 </intent-filter>
3169 </receiver>
3170
3171 <receiver
Kuan Wangdf05a132022-10-20 11:48:48 +08003172 android:name=".fuelgauge.batteryusage.PeriodicJobReceiver"
3173 android:exported="false">
3174 <intent-filter>
3175 <action android:name="com.android.settings.battery.action.PERIODIC_JOB_UPDATE"/>
3176 </intent-filter>
3177 </receiver>
3178
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003179 <activity
3180 android:name="Settings$BatterySaverSettingsActivity"
3181 android:label="@string/battery_saver"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003182 android:exported="true"
ykhungeadeee52022-05-18 12:18:15 +08003183 android:icon="@drawable/ic_homepage_battery">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003184 <intent-filter android:priority="1">
3185 <action android:name="android.settings.BATTERY_SAVER_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003186 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003187 <category android:name="android.intent.category.DEFAULT" />
3188 </intent-filter>
John Spurlockc7f8e8c2014-06-04 19:11:22 -04003189 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang747f0e12018-03-01 09:49:34 -08003190 android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003191 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3192 android:value="@string/menu_key_battery"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003193 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3194 android:value="true" />
John Spurlockc7f8e8c2014-06-04 19:11:22 -04003195 </activity>
3196
P.Y. Laligand1f403d52015-04-14 16:14:16 -07003197 <activity android:name=".fuelgauge.BatterySaverModeVoiceActivity"
Barnaby Jamesc55ea152015-04-13 14:33:53 -07003198 android:label="@string/power_usage_summary_title"
ykhungeadeee52022-05-18 12:18:15 +08003199 android:icon="@drawable/ic_homepage_battery"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07003200 android:theme="@*android:style/Theme.DeviceDefault.Light.Voice"
Barnaby Jamesc55ea152015-04-13 14:33:53 -07003201 android:exported="true">
3202 <intent-filter>
3203 <action android:name="android.settings.VOICE_CONTROL_BATTERY_SAVER_MODE" />
3204 <category android:name="android.intent.category.DEFAULT" />
3205 <category android:name="android.intent.category.VOICE" />
3206 </intent-filter>
3207 </activity>
3208
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003209 <activity
3210 android:name="Settings$AccountSyncSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003211 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003212 android:label="@string/account_sync_settings_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003213 <intent-filter android:priority="1">
3214 <action android:name="android.settings.ACCOUNT_SYNC_SETTINGS" />
3215 <category android:name="android.intent.category.DEFAULT" />
3216 </intent-filter>
Amith Yamasani43c69782010-12-01 09:04:36 -08003217 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3218 android:value="com.android.settings.accounts.AccountSyncSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003219 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3220 android:value="@string/menu_key_accounts"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003221 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3222 android:value="true" />
Amith Yamasani43c69782010-12-01 09:04:36 -08003223 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003224 <activity
3225 android:name="Settings$ManagedProfileSettingsActivity"
Ricky Waibf94d092017-02-01 15:26:29 +00003226 android:label="@string/managed_profile_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003227 android:exported="true"
Ricky Waibf94d092017-02-01 15:26:29 +00003228 android:permission="android.permission.MANAGE_USERS">
3229 <intent-filter android:priority="1">
3230 <action android:name="android.settings.MANAGED_PROFILE_SETTINGS" />
3231 <category android:name="android.intent.category.DEFAULT" />
3232 </intent-filter>
3233 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3234 android:value="com.android.settings.accounts.ManagedProfileSettings" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003235 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3236 android:value="@string/menu_key_accounts"/>
Ricky Waibf94d092017-02-01 15:26:29 +00003237 </activity>
Amith Yamasani43c69782010-12-01 09:04:36 -08003238
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003239 <activity
3240 android:name="com.android.settings.accounts.AddAccountSettings"
Amith Yamasani7bb8f722011-06-02 18:05:40 -07003241 android:configChanges="orientation|keyboardHidden|screenSize"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003242 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003243 android:label="@string/header_add_an_account">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003244 <intent-filter android:priority="1">
3245 <action android:name="android.settings.ADD_ACCOUNT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003246 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003247 <category android:name="android.intent.category.DEFAULT" />
3248 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003249 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3250 android:value="true" />
Amith Yamasani43c69782010-12-01 09:04:36 -08003251 </activity>
3252
Jason Monkb7e43802016-06-06 16:01:58 -04003253 <activity android:name="Settings$ChooseAccountActivity"
Amith Yamasani43c69782010-12-01 09:04:36 -08003254 android:label="@string/header_add_an_account"
Fan Zhang92f1e942017-01-21 10:07:26 -08003255 android:configChanges="orientation|keyboardHidden|screenSize">
Jason Monkb7e43802016-06-06 16:01:58 -04003256 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Emily Chuangb279b1c2018-04-12 10:12:28 +08003257 android:value="com.android.settings.accounts.ChooseAccountFragment" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003258 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3259 android:value="@string/menu_key_accounts"/>
Jason Monkb7e43802016-06-06 16:01:58 -04003260 </activity>
Jim Miller165bf2f2011-01-26 16:10:26 -08003261
Jeff Sharkey9e9f7d12015-11-30 13:28:19 -07003262 <!-- Triggered when user-selected home app isn't encryption aware -->
3263 <activity android:name=".FallbackHome"
3264 android:excludeFromRecents="true"
Fan Zhang49534b72017-06-22 15:04:41 -07003265 android:label=""
Louis Chang397cdd62019-06-27 09:57:54 +08003266 android:taskAffinity="com.android.settings.FallbackHome"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003267 android:exported="true"
Adam Bookatzeb89d142022-02-24 16:45:28 -08003268 android:theme="@style/FallbackHome"
Tsung-Mao Fangf5062c22022-09-30 15:27:06 +08003269 android:permission="android.permission.DEVICE_POWER"
Adam Bookatzeb89d142022-02-24 16:45:28 -08003270 android:configChanges="keyboardHidden">
Xiaohui Chendbf3e152015-12-30 15:51:56 -08003271 <intent-filter android:priority="-1000">
Jeff Sharkey9e9f7d12015-11-30 13:28:19 -07003272 <action android:name="android.intent.action.MAIN" />
3273 <category android:name="android.intent.category.HOME" />
3274 <category android:name="android.intent.category.DEFAULT" />
3275 </intent-filter>
3276 </activity>
3277
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003278 <activity
3279 android:name="Settings$DataUsageSummaryActivity"
3280 android:label="@string/data_usage_summary_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003281 android:exported="true"
SongFerng Wang7ac8fc72023-08-22 06:36:58 +00003282 android:enabled="@bool/config_show_sim_info"
Bonian Chen86027472022-03-18 09:23:19 +08003283 android:icon="@drawable/ic_homepage_data_usage">
Rohan Shahff5bd332018-03-21 17:16:39 -07003284 <intent-filter android:priority="1">
3285 <action android:name="android.settings.DATA_USAGE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003286 <category android:name="android.intent.category.BROWSABLE" />
Rohan Shahff5bd332018-03-21 17:16:39 -07003287 <category android:name="android.intent.category.DEFAULT" />
3288 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003289 <intent-filter android:priority="3">
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003290 <action android:name="android.intent.action.MAIN" />
Amith Yamasani7836e4a2011-09-19 13:25:52 -07003291 <category android:name="com.android.settings.SHORTCUT" />
Jeff Sharkeydd6efe12011-06-15 10:31:41 -07003292 </intent-filter>
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003293 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangcd21cb82018-06-11 09:28:02 -07003294 android:value="com.android.settings.datausage.DataUsageSummary" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003295 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3296 android:value="@string/menu_key_network"/>
Jeff Sharkeyab2d8d32011-05-30 16:19:56 -07003297 </activity>
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003298 <activity
3299 android:name="Settings$MobileDataUsageListActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003300 android:exported="true"
Yanting Yang85713d02019-09-27 18:34:04 +08003301 android:label="@string/cellular_data_usage">
Malcolm Chen52584e92017-06-20 11:14:27 -07003302 <intent-filter android:priority="1">
3303 <action android:name="android.settings.MOBILE_DATA_USAGE" />
Malcolm Chen6fef2fff2017-07-13 17:59:58 -07003304 <category android:name="android.intent.category.DEFAULT" />
Malcolm Chen52584e92017-06-20 11:14:27 -07003305 </intent-filter>
3306 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Ling282a0d92018-11-30 16:20:32 -08003307 android:value="com.android.settings.datausage.DataUsageList" />
Arc Wanga63e9c62021-09-28 20:39:15 +08003308 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3309 android:value="@string/menu_key_network"/>
Malcolm Chen52584e92017-06-20 11:14:27 -07003310 </activity>
3311
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003312 <activity
3313 android:name="Settings$DreamSettingsActivity"
3314 android:label="@string/screensaver_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003315 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003316 android:icon="@drawable/ic_settings_display">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003317 <intent-filter android:priority="1">
3318 <action android:name="android.settings.DREAM_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003319 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003320 <category android:name="android.intent.category.DEFAULT" />
3321 </intent-filter>
Daniel Sandler7dee75c2012-11-27 22:41:30 -05003322 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Evan Laird22315ad2017-07-18 16:37:42 -04003323 android:value="com.android.settings.dream.DreamSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003324 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3325 android:value="@string/menu_key_display"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003326 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3327 android:value="true" />
Daniel Sandler7dee75c2012-11-27 22:41:30 -05003328 </activity>
3329
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003330 <activity
Lucas Silva3b1c7392023-04-12 15:22:39 -04003331 android:name="Settings$CommunalSettingsActivity"
3332 android:label="@string/communal_settings_title"
3333 android:exported="true"
3334 android:icon="@drawable/ia_settings_communal">
3335 <intent-filter android:priority="1">
3336 <action android:name="android.settings.COMMUNAL_SETTINGS" />
3337 <category android:name="android.intent.category.BROWSABLE" />
3338 <category android:name="android.intent.category.DEFAULT" />
3339 </intent-filter>
3340 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3341 android:value="com.android.settings.communal.CommunalDashboardFragment" />
3342 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3343 android:value="@string/menu_key_communal"/>
3344 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3345 android:value="true" />
3346 </activity>
3347
3348 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003349 android:name="Settings$UserSettingsActivity"
3350 android:label="@string/user_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003351 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003352 android:icon="@drawable/ic_settings_multiuser">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003353 <intent-filter android:priority="1">
3354 <action android:name="android.settings.USER_SETTINGS" />
3355 <category android:name="android.intent.category.DEFAULT" />
3356 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07003357 <intent-filter>
Jason Monk4da79e02015-09-10 10:54:36 -04003358 <action android:name="com.android.settings.action.SETTINGS" />
3359 </intent-filter>
Fan Zhang99800962018-08-08 11:12:03 -07003360 <meta-data android:name="com.android.settings.order" android:value="-45"/>
Jason Monk4da79e02015-09-10 10:54:36 -04003361 <meta-data android:name="com.android.settings.category"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003362 android:value="com.android.settings.category.ia.system" />
Raff Tsai6db277e2019-10-02 16:43:23 +08003363 <meta-data android:name="com.android.settings.summary_uri"
3364 android:value="content://com.android.settings.dashboard.SummaryProvider/user" />
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08003365 <meta-data android:name="com.android.settings.icon"
3366 android:resource="@drawable/ic_settings_multiuser" />
Amith Yamasani233592b2013-03-01 17:05:23 -08003367 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003368 android:value="com.android.settings.users.UserSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003369 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3370 android:value="@string/menu_key_system"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003371 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
Raff Tsai9e3a9fd2019-10-01 17:06:26 +08003372 android:value="true" />
Amith Yamasani233592b2013-03-01 17:05:23 -08003373 </activity>
3374
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003375 <activity
3376 android:name="Settings$PaymentSettingsActivity"
3377 android:label="@string/nfc_payment_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003378 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003379 android:icon="@drawable/ic_settings_nfc_payment">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003380 <intent-filter android:priority="1">
3381 <action android:name="android.settings.NFC_PAYMENT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003382 <category android:name="android.intent.category.BROWSABLE" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003383 <category android:name="android.intent.category.DEFAULT" />
3384 </intent-filter>
Martijn Coenen26515da2013-08-01 18:13:33 -07003385 <intent-filter>
3386 <action android:name="android.intent.action.MAIN" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003387 <category android:name="android.intent.category.DEFAULT" />
3388 </intent-filter>
3389 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3390 android:value="com.android.settings.nfc.PaymentSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003391 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3392 android:value="@string/menu_key_connected_devices"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003393 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3394 android:value="true" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003395 </activity>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003396
Martijn Coenen26515da2013-08-01 18:13:33 -07003397 <activity android:name=".nfc.PaymentDefaultDialog"
Martijn Coenenda6c0ba2013-09-05 21:07:23 -07003398 android:label="@string/nfc_payment_set_default_label"
Martijn Coenen26515da2013-08-01 18:13:33 -07003399 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003400 android:exported="true"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07003401 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003402 <intent-filter android:priority="1">
Martijn Coenena73aa322013-08-30 12:57:42 -07003403 <action android:name="android.nfc.cardemulation.action.ACTION_CHANGE_DEFAULT" />
3404 <category android:name="android.intent.category.DEFAULT" />
3405 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003406 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3407 android:value="true" />
Martijn Coenen26515da2013-08-01 18:13:33 -07003408 </activity>
3409
Martijn Coenencbcc76e2015-06-05 21:28:17 +02003410 <activity android:name=".nfc.HowItWorks"
3411 android:label="@string/nfc_payment_settings_title"
Martijn Coenencbcc76e2015-06-05 21:28:17 +02003412 android:excludeFromRecents="true">
3413 </activity>
3414
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003415 <activity
3416 android:name="Settings$NotificationAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003417 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003418 android:label="@string/manage_notification_access_title">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003419 <intent-filter android:priority="1">
3420 <action android:name="android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS" />
3421 <category android:name="android.intent.category.DEFAULT" />
3422 </intent-filter>
Daniel Sandler79b9bfe2013-04-04 14:30:04 -04003423 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
John Spurlock4a350512014-04-08 14:08:21 -04003424 android:value="com.android.settings.notification.NotificationAccessSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003425 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3426 android:value="@string/menu_key_notifications"/>
John Spurlock08531a82015-05-07 17:45:43 -04003427 </activity>
3428
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003429 <activity
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003430 android:name="Settings$NotificationAccessDetailsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003431 android:exported="true"
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003432 android:label="@string/manage_notification_access_title" >
3433 <intent-filter android:priority="1">
3434 <action android:name="android.settings.NOTIFICATION_LISTENER_DETAIL_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003435 <category android:name="android.intent.category.BROWSABLE" />
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003436 <category android:name="android.intent.category.DEFAULT" />
3437 </intent-filter>
3438 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3439 android:value="com.android.settings.applications.specialaccess.notificationaccess.NotificationAccessDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003440 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3441 android:value="@string/menu_key_notifications"/>
Julia Reynolds31dc1fd2019-10-29 15:15:08 -04003442 </activity>
3443
3444 <activity
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003445 android:name="Settings$NotificationAssistantSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003446 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003447 android:label="@string/notification_assistant_title">
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003448 <intent-filter android:priority="1">
3449 <action android:name="android.settings.NOTIFICATION_ASSISTANT_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003450 <category android:name="android.intent.category.BROWSABLE" />
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003451 <category android:name="android.intent.category.DEFAULT" />
3452 </intent-filter>
3453 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Chloris Kuo2c955bb2021-03-19 07:00:45 -07003454 android:value="com.android.settings.notification.ConfigureNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003455 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3456 android:value="@string/menu_key_notifications"/>
Fabian Kozynski01b2a632019-02-20 12:55:10 -05003457 </activity>
3458
3459 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003460 android:name="Settings$VrListenersSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003461 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003462 android:label="@string/vr_listeners_title">
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003463 <intent-filter android:priority="1">
3464 <action android:name="android.settings.VR_LISTENER_SETTINGS" />
3465 <category android:name="android.intent.category.DEFAULT" />
3466 </intent-filter>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003467 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangaf155222018-07-11 09:41:39 -07003468 android:value="com.android.settings.applications.specialaccess.vrlistener.VrListenerSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003469 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3470 android:value="@string/menu_key_apps"/>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003471 </activity>
3472
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003473 <activity
3474 android:name="Settings$PictureInPictureSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003475 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003476 android:label="@string/picture_in_picture_title">
Winson Chung0a0d95a2017-01-20 11:22:44 -08003477 <intent-filter android:priority="1">
3478 <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" />
3479 <category android:name="android.intent.category.DEFAULT" />
3480 </intent-filter>
3481 <intent-filter>
3482 <action android:name="android.intent.action.MAIN" />
3483 <category android:name="android.intent.category.DEFAULT" />
3484 </intent-filter>
3485 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang4560ab72018-07-10 15:46:31 -07003486 android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003487 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3488 android:value="@string/menu_key_apps"/>
Winson Chung0a0d95a2017-01-20 11:22:44 -08003489 </activity>
Ruben Brunke1c98ca2016-02-23 18:58:56 -08003490
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003491 <activity
3492 android:name="Settings$AppPictureInPictureSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003493 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003494 android:label="@string/picture_in_picture_title">
Winson Chung217d0e92017-03-17 15:48:38 -07003495 <intent-filter>
3496 <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" />
3497 <category android:name="android.intent.category.DEFAULT" />
3498 <data android:scheme="package" />
3499 </intent-filter>
3500 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang4560ab72018-07-10 15:46:31 -07003501 android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003502 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3503 android:value="@string/menu_key_apps"/>
Winson Chung217d0e92017-03-17 15:48:38 -07003504 </activity>
3505
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003506 <activity
Philip Junker8a978052022-03-14 18:08:46 +00003507 android:name="Settings$TurnScreenOnSettingsActivity"
3508 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003509 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Philip Junker8a978052022-03-14 18:08:46 +00003510 android:label="@string/turn_screen_on_title">
3511 <intent-filter android:priority="1">
3512 <action android:name="android.settings.TURN_SCREEN_ON_SETTINGS" />
3513 <category android:name="android.intent.category.DEFAULT" />
3514 </intent-filter>
3515 <intent-filter>
3516 <action android:name="android.intent.action.MAIN" />
3517 <category android:name="android.intent.category.DEFAULT" />
3518 </intent-filter>
3519 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Philip Junkerded7f452023-04-19 11:59:19 +00003520 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Philip Junker8a978052022-03-14 18:08:46 +00003521 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3522 android:value="@string/menu_key_apps"/>
3523 </activity>
3524
3525 <activity
Philip Junkerded7f452023-04-19 11:59:19 +00003526 android:name="Settings$AppTurnScreenOnSettingsActivity"
3527 android:exported="true"
3528 android:label="@string/turn_screen_on_title">
3529 <intent-filter android:priority="1">
3530 <action android:name="android.settings.TURN_SCREEN_ON_SETTINGS" />
3531 <category android:name="android.intent.category.DEFAULT" />
3532 <data android:scheme="package" />
3533 </intent-filter>
3534 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3535 android:value="com.android.settings.applications.specialaccess.turnscreenon.TurnScreenOnDetails"/>
3536 </activity>
3537
3538 <activity
kholoud mohamed14a887f2020-01-29 17:38:31 +00003539 android:name="Settings$InteractAcrossProfilesSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003540 android:exported="true"
kholoud mohamed14a887f2020-01-29 17:38:31 +00003541 android:label="@string/interact_across_profiles_title">
3542 <intent-filter android:priority="1">
3543 <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" />
3544 <category android:name="android.intent.category.DEFAULT" />
3545 </intent-filter>
3546 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3547 android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003548 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3549 android:value="@string/menu_key_apps"/>
kholoud mohamed14a887f2020-01-29 17:38:31 +00003550 </activity>
3551
3552 <activity android:name="Settings$AppInteractAcrossProfilesSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003553 android:exported="true"
kholoud mohamed14a887f2020-01-29 17:38:31 +00003554 android:label="@string/interact_across_profiles_title">
3555 <intent-filter>
3556 <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" />
3557 <category android:name="android.intent.category.DEFAULT" />
3558 <data android:scheme="package" />
3559 </intent-filter>
3560 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3561 android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003562 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3563 android:value="@string/menu_key_apps"/>
kholoud mohamed14a887f2020-01-29 17:38:31 +00003564 </activity>
3565
3566 <activity
Fan Zhange366f022019-03-19 13:08:10 -07003567 android:name="Settings$ZenAccessDetailSettingsActivity"
3568 android:label="@string/manage_zen_access_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003569 android:exported="true"
Fan Zhange366f022019-03-19 13:08:10 -07003570 android:excludeFromRecents="true">
3571 <intent-filter>
3572 <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_DETAIL_SETTINGS" />
3573 <category android:name="android.intent.category.DEFAULT" />
3574 <data android:scheme="package" />
3575 </intent-filter>
3576 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3577 android:value="com.android.settings.applications.specialaccess.zenaccess.ZenAccessDetails" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003578 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3579 android:value="@string/menu_key_notifications"/>
Fan Zhange366f022019-03-19 13:08:10 -07003580 </activity>
3581
3582 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003583 android:name="Settings$ZenAccessSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003584 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003585 android:label="@string/manage_zen_access_title">
John Spurlock08531a82015-05-07 17:45:43 -04003586 <intent-filter android:priority="1">
John Spurlocka00194d2015-06-04 13:01:59 -04003587 <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_SETTINGS" />
John Spurlock08531a82015-05-07 17:45:43 -04003588 <category android:name="android.intent.category.DEFAULT" />
3589 </intent-filter>
John Spurlock08531a82015-05-07 17:45:43 -04003590 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003591 android:value="com.android.settings.notification.zen.ZenAccessSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003592 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3593 android:value="@string/menu_key_notifications"/>
Daniel Sandler79b9bfe2013-04-04 14:30:04 -04003594 </activity>
3595
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003596 <activity
3597 android:name="Settings$ConfigureNotificationSettingsActivity"
3598 android:label="@string/configure_notification_settings"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003599 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003600 <intent-filter android:priority="1">
3601 <action android:name="android.settings.NOTIFICATION_SETTINGS" />
3602 <category android:name="android.intent.category.DEFAULT" />
3603 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003604 <intent-filter android:priority="21">
Dan Sandler347f9442014-03-11 01:32:47 -04003605 <action android:name="android.intent.action.MAIN" />
Dan Sandler347f9442014-03-11 01:32:47 -04003606 <category android:name="com.android.settings.SHORTCUT" />
3607 </intent-filter>
3608 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003609 android:value="com.android.settings.notification.ConfigureNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003610 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3611 android:value="@string/menu_key_notifications"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003612 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3613 android:value="true" />
Dan Sandler347f9442014-03-11 01:32:47 -04003614 </activity>
3615
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003616 <activity
Julia Reynolds6a88e142020-06-02 11:20:13 -04003617 android:name="Settings$ConversationListSettingsActivity"
3618 android:label="@string/zen_mode_conversations_title"
3619 android:exported="true">
3620 <intent-filter android:priority="1">
3621 <action android:name="android.settings.CONVERSATION_SETTINGS" />
3622 <category android:name="android.intent.category.DEFAULT" />
3623 </intent-filter>
3624 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3625 android:value="com.android.settings.notification.app.ConversationListSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003626 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3627 android:value="@string/menu_key_apps"/>
Julia Reynolds6a88e142020-06-02 11:20:13 -04003628 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3629 android:value="true" />
3630 </activity>
3631
3632 <activity
Julia Reynolds4e48da92019-03-26 09:04:22 -04003633 android:name="Settings$AppBubbleNotificationSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003634 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003635 android:label="@string/bubbles_app_toggle_title">
Julia Reynolds4e48da92019-03-26 09:04:22 -04003636 <intent-filter android:priority="1">
3637 <action android:name="android.settings.APP_NOTIFICATION_BUBBLE_SETTINGS" />
3638 <category android:name="android.intent.category.DEFAULT" />
3639 </intent-filter>
3640 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003641 android:value="com.android.settings.notification.app.AppBubbleNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003642 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3643 android:value="@string/menu_key_apps"/>
Julia Reynolds4e48da92019-03-26 09:04:22 -04003644 </activity>
3645
3646 <activity
Amber Ogata9d5de292020-12-16 20:37:22 +00003647 android:name="Settings$PremiumSmsAccessActivity"
3648 android:label="@string/premium_sms_access"
3649 android:exported="true">
3650 <intent-filter>
3651 <action android:name="android.settings.PREMIUM_SMS_SETTINGS" />
3652 <category android:name="android.intent.category.DEFAULT" />
3653 <data android:scheme="package" />
3654 </intent-filter>
3655 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3656 android:value="com.android.settings.applications.specialaccess.premiumsms.PremiumSmsAccess" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003657 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3658 android:value="@string/menu_key_apps"/>
Amber Ogata9d5de292020-12-16 20:37:22 +00003659 </activity>
3660
3661 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003662 android:name="Settings$SoundSettingsActivity"
3663 android:label="@string/sound_settings"
3664 android:icon="@drawable/ic_homepage_sound"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003665 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003666 <intent-filter android:priority="1">
John Spurlock4e4cdef2014-05-28 09:43:45 -04003667 <action android:name="com.android.settings.SOUND_SETTINGS" />
3668 <action android:name="android.settings.SOUND_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08003669 <category android:name="android.intent.category.BROWSABLE" />
Kenny Guyf9f279e2017-04-04 18:01:13 +01003670 <action android:name="android.settings.ACTION_OTHER_SOUND_SETTINGS" />
John Spurlock4e4cdef2014-05-28 09:43:45 -04003671 <category android:name="android.intent.category.DEFAULT" />
Dianne Hackborn0702e872015-02-20 12:48:32 -08003672 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07003673 <intent-filter android:priority="40">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003674 <action android:name="android.intent.action.MAIN" />
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003675 <category android:name="com.android.settings.SHORTCUT" />
John Spurlock4e4cdef2014-05-28 09:43:45 -04003676 </intent-filter>
3677 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003678 android:value="com.android.settings.notification.SoundSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003679 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3680 android:value="@string/menu_key_sound"/>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003681 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3682 android:value="true" />
Julia Reynolds8c0a4232015-11-24 10:08:14 -05003683 </activity>
John Spurlock4e4cdef2014-05-28 09:43:45 -04003684
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003685 <!-- Show apps for which application-level notification settings are applicable -->
3686 <activity android:name="Settings$NotificationAppListActivity"
3687 android:label="@string/app_notifications_title"
3688 android:icon="@drawable/ic_notifications"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003689 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Fan Zhang416ff0a2018-10-26 15:39:39 -07003690 android:exported="true">
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003691 <intent-filter android:priority="1">
3692 <action android:name="android.settings.ALL_APPS_NOTIFICATION_SETTINGS" />
3693 <category android:name="android.intent.category.DEFAULT" />
3694 </intent-filter>
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003695 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3696 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003697 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3698 android:value="@string/menu_key_notifications"/>
Julia Reynoldsff9500d2018-03-21 15:23:13 -04003699 </activity>
3700
“Ankitaa6ff8972022-10-03 05:01:00 +00003701 <!-- Displays a list of apps available for cloning on the device -->
3702 <activity android:name=".Settings$ClonedAppsListActivity"
3703 android:label="@string/cloned_apps_dashboard_title"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003704 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
“Ankitaa6ff8972022-10-03 05:01:00 +00003705 android:exported="true">
3706 <intent-filter android:priority="1">
3707 <action android:name="android.settings.MANAGE_CLONED_APPS_SETTINGS" />
3708 <category android:name="android.intent.category.DEFAULT" />
3709 </intent-filter>
3710 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3711 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
3712 </activity>
3713
Yuri Lin554ab1f2022-04-12 17:05:49 -04003714 <!-- Application-level notification settings page, same as above but only accessible
3715 internally from system server -->
3716 <activity android:name="Settings$NotificationReviewPermissionsActivity"
3717 android:label="@string/app_notifications_title"
3718 android:icon="@drawable/ic_notifications"
3719 android:exported="false">
3720 <intent-filter android:priority="1">
3721 <action android:name="android.settings.ALL_APPS_NOTIFICATION_SETTINGS_FOR_REVIEW" />
3722 <category android:name="android.intent.category.DEFAULT" />
3723 </intent-filter>
3724 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
3725 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
3726 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3727 android:value="@string/menu_key_notifications"/>
3728 </activity>
3729
John Spurlock802ddf92014-07-18 11:51:13 -04003730 <!-- Show application-level notification settings (app passed in as extras) -->
3731 <activity android:name="Settings$AppNotificationSettingsActivity"
John Spurlockb8ec3432014-07-27 13:33:34 -04003732 android:exported="true">
Dianne Hackborn0702e872015-02-20 12:48:32 -08003733 <intent-filter android:priority="1">
3734 <action android:name="android.settings.APP_NOTIFICATION_SETTINGS" />
3735 <category android:name="android.intent.category.DEFAULT" />
3736 </intent-filter>
John Spurlock802ddf92014-07-18 11:51:13 -04003737 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003738 android:value="com.android.settings.notification.app.AppNotificationSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08003739 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3740 android:value="@string/menu_key_notifications"/>
John Spurlockb8ec3432014-07-27 13:33:34 -04003741 </activity>
3742
Julia Reynolds69492882017-01-25 10:32:07 -05003743 <!-- Show channel-level notification settings (channel passed in as extras) -->
Julia Reynoldsefe26e22021-03-10 21:38:49 -05003744 <activity android:name=".notification.app.ChannelPanelActivity"
Julia Reynoldse2897ae2018-04-19 10:04:53 -04003745 android:label="@string/notification_channel_title"
Edgar Wang2917c0c2023-05-30 08:28:30 +00003746 android:theme="@style/Theme.Panel.Material"
Julia Reynoldsefe26e22021-03-10 21:38:49 -05003747 android:excludeFromRecents="true"
Valentin Iftime1e81f6e2023-01-30 10:44:37 +01003748 android:configChanges="keyboardHidden|screenSize"
Julia Reynolds69492882017-01-25 10:32:07 -05003749 android:exported="true">
3750 <intent-filter android:priority="1">
3751 <action android:name="android.settings.CHANNEL_NOTIFICATION_SETTINGS" />
3752 <category android:name="android.intent.category.DEFAULT" />
3753 </intent-filter>
Julia Reynolds69492882017-01-25 10:32:07 -05003754 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Julia Reynoldsaceccce2019-11-26 16:14:03 -05003755 android:value="com.android.settings.notification.app.ChannelNotificationSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003756 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3757 android:value="@string/menu_key_notifications"/>
Julia Reynolds69492882017-01-25 10:32:07 -05003758 </activity>
3759
Zachary Kuznia5adcb3d2015-08-07 16:32:28 -07003760 <!-- Show Manual (from settings item) -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003761 <activity
3762 android:name="ManualDisplayActivity"
3763 android:label="@string/manual"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003764 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003765 android:enabled="@bool/config_show_manual">
Zachary Kuznia5adcb3d2015-08-07 16:32:28 -07003766 <intent-filter>
3767 <action android:name="android.settings.SHOW_MANUAL" />
3768 <category android:name="android.intent.category.DEFAULT" />
3769 </intent-filter>
3770 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3771 android:value="true" />
3772 </activity>
3773
Jake Hamby5e9bd862013-04-09 15:48:25 -07003774 <!-- Show regulatory info (from settings item or dialing "*#07#") -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003775 <activity
3776 android:name="RegulatoryInfoDisplayActivity"
Chaohui Wang590b4e72023-07-07 15:31:20 +08003777 android:theme="@style/Theme.AlertDialog"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003778 android:label="@string/regulatory_labels"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003779 android:exported="true"
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003780 android:enabled="@bool/config_show_regulatory_info">
Jeff Sharkey3daa2592014-04-18 15:30:15 -07003781 <intent-filter>
Jake Hamby5e9bd862013-04-09 15:48:25 -07003782 <action android:name="android.settings.SHOW_REGULATORY_INFO" />
Han Xub7d10772022-08-15 19:19:55 +08003783 <category android:name="android.intent.category.BROWSABLE" />
Jake Hamby5e9bd862013-04-09 15:48:25 -07003784 <category android:name="android.intent.category.DEFAULT" />
3785 </intent-filter>
Alexandra Gherghina25138512014-07-21 22:42:21 +01003786 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3787 android:value="true" />
Jake Hamby5e9bd862013-04-09 15:48:25 -07003788 </activity>
3789
Eugene Susla57544122017-04-14 10:42:59 -07003790 <!-- Confirmation dialog for enabling notification access from CompanionDeviceManager -->
3791 <activity android:name=".notification.NotificationAccessConfirmationActivity"
Guojing Yuan19235b82021-05-12 17:06:42 +00003792 android:taskAffinity=".notification.NotificationAccessConfirmationActivity"
Eugene Susla57544122017-04-14 10:42:59 -07003793 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
3794
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003795 <receiver android:name="com.android.settingslib.bluetooth.BluetoothDiscoverableTimeoutReceiver"
3796 android:exported="true">
Srikanth Uppala59a97f72012-04-04 03:32:22 -07003797 <intent-filter>
3798 <action android:name="android.bluetooth.intent.DISCOVERABLE_TIMEOUT" />
3799 </intent-filter>
3800 </receiver>
3801
Amith Yamasani32dccbc2012-09-13 18:06:49 -07003802 <!-- Watch for ContactsContract.Profile changes and update the user's photo. -->
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003803 <receiver android:name=".users.ProfileUpdateReceiver"
3804 android:exported="true">
Amith Yamasani32dccbc2012-09-13 18:06:49 -07003805 <intent-filter>
3806 <action android:name="android.provider.Contacts.PROFILE_CHANGED" />
3807 </intent-filter>
3808 </receiver>
3809
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003810 <receiver android:name=".sim.SimSelectNotification"
3811 android:exported="true">
PauloftheWest63f7bc82014-10-30 08:01:30 -07003812 <intent-filter>
Malcolm Chena05e6f82019-03-27 17:45:29 -07003813 <action android:name="android.telephony.action.PRIMARY_SUBSCRIPTION_LIST_CHANGED"/>
Malcolm Chen7dd82f92019-04-18 19:45:04 -07003814 <action android:name="android.settings.ENABLE_MMS_DATA_REQUEST"/>
PauloftheWest63f7bc82014-10-30 08:01:30 -07003815 </intent-filter>
3816 </receiver>
3817
Amith Yamasani2ad96252013-09-09 13:07:27 -07003818 <provider
Aurimas Liutikase0069d32018-04-17 11:22:43 -07003819 android:name="androidx.core.content.FileProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003820 android:authorities="${applicationId}.files"
Amith Yamasani2ad96252013-09-09 13:07:27 -07003821 android:grantUriPermissions="true"
3822 android:exported="false">
3823 <meta-data
3824 android:name="android.support.FILE_PROVIDER_PATHS"
3825 android:resource="@xml/file_paths" />
3826 </provider>
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003827
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07003828 <provider
3829 android:name=".deviceinfo.legal.ModuleLicenseProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003830 android:authorities="${applicationId}.module_licenses"
Andrew Sapperstein56a8c332019-06-18 09:44:18 -07003831 android:grantUriPermissions="true"
3832 android:exported="false"/>
3833
Fan Zhang9fdceae2021-03-10 21:45:19 +00003834 <provider
3835 android:name=".emergency.EmergencyActionContentProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003836 android:authorities="${applicationId}.emergency"
Fan Zhang9fdceae2021-03-10 21:45:19 +00003837 android:permission="android.permission.CALL_PRIVILEGED"
3838 android:exported="true"/>
3839
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003840 <activity
3841 android:name=".wifi.RequestToggleWiFiActivity"
3842 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"
Svetoslav Ganov871078e2016-07-26 18:26:45 -07003843 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003844 android:exported="true"
Svetoslav Ganov871078e2016-07-26 18:26:45 -07003845 android:permission="android.permission.CHANGE_WIFI_STATE">
3846 <intent-filter>
3847 <action android:name="android.net.wifi.action.REQUEST_ENABLE" />
3848 <action android:name="android.net.wifi.action.REQUEST_DISABLE" />
3849 <category android:name="android.intent.category.DEFAULT" />
3850 </intent-filter>
3851 </activity>
3852
Weng Su56a88882021-07-06 11:30:17 +08003853 <!--
3854 The Wi-Fi result data will only be returned from WifiDialogActivity if the calling
3855 package has ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission. (see b/185126813)
3856 -->
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003857 <activity
3858 android:name=".wifi.WifiDialogActivity"
Udam Saini86d52c92016-03-10 11:30:53 -08003859 android:label=""
Maurice Lam771fac52015-09-08 10:36:43 -07003860 android:theme="@style/Transparent"
3861 android:excludeFromRecents="true"
lindatseng8d7d0132019-05-21 14:41:11 -07003862 android:documentLaunchMode="always"
Maurice Lamec1f2ee2015-10-29 16:40:49 -07003863 android:exported="true"
Udam Saini0ec68622015-12-21 10:52:34 -08003864 android:permission="android.permission.CHANGE_WIFI_STATE"
Weng Su179fc5e2023-04-24 12:29:34 +08003865 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout">
Maurice Lam771fac52015-09-08 10:36:43 -07003866 <intent-filter>
3867 <action android:name="com.android.settings.WIFI_DIALOG" />
3868 <category android:name="android.intent.category.DEFAULT" />
3869 </intent-filter>
3870 </activity>
3871
cosmohsiehda37bb72018-11-26 11:58:02 +08003872 <activity
3873 android:name=".wifi.NetworkRequestDialogActivity"
govenliudbf920c2019-08-19 16:22:22 +08003874 android:theme="@style/Theme.AlertDialog"
cosmohsiehda37bb72018-11-26 11:58:02 +08003875 android:excludeFromRecents="true"
cosmohsiehed2fac12019-03-21 13:32:19 +08003876 android:launchMode="singleTop"
3877 android:taskAffinity=".wifi.NetworkRequestDialogActivity"
cosmohsiehda37bb72018-11-26 11:58:02 +08003878 android:exported="true"
Roshan Piusb2db1f02019-11-19 15:45:40 +00003879 android:permission="android.permission.NETWORK_SETTINGS">
cosmohsiehda37bb72018-11-26 11:58:02 +08003880 <intent-filter>
cosmohsieh1e2e6142019-01-11 10:02:24 +08003881 <action android:name="com.android.settings.wifi.action.NETWORK_REQUEST" />
cosmohsiehda37bb72018-11-26 11:58:02 +08003882 <category android:name="android.intent.category.DEFAULT" />
3883 </intent-filter>
3884 </activity>
3885
Jason Chiu2c3e6c62019-04-30 14:41:19 +08003886 <receiver
Jason Chiuda2ca2f2019-01-29 17:13:28 +08003887 android:name=".wifi.slice.ConnectToWifiHandler"
Jason Chiuda2ca2f2019-01-29 17:13:28 +08003888 android:exported="false" />
3889
Antony Sargenta7dc2772019-04-12 15:08:16 -07003890 <activity
3891 android:name=".sim.SimDialogActivity"
SongFerngWangbe8f2792021-12-21 12:58:12 +08003892 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"
Antony Sargenta7dc2772019-04-12 15:08:16 -07003893 android:label="@string/sim_settings_title"
3894 android:launchMode="singleTop"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003895 android:exported="true"
Antony Sargenta7dc2772019-04-12 15:08:16 -07003896 android:excludeFromRecents="true">
PauloftheWestffef98b2014-11-18 07:12:48 -08003897 <intent-filter>
3898 <action android:name="android.intent.action.MAIN" />
PauloftheWestffef98b2014-11-18 07:12:48 -08003899 </intent-filter>
3900 </activity>
3901
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003902 <activity
Fan Zhang03dd39c2019-04-02 16:41:01 -07003903 android:name=".flashlight.FlashlightHandleActivity"
3904 android:theme="@android:style/Theme.NoDisplay"
3905 android:excludeFromRecents="true"
3906 android:exported="true"
3907 android:label="@string/power_flashlight"/>
3908
3909 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003910 android:name="Settings$WifiCallingSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003911 android:exported="true"
Zoey Chen6cf16b02021-11-01 16:46:12 +08003912 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout"
Fan Zhang416ff0a2018-10-26 15:39:39 -07003913 android:label="@string/wifi_calling_settings_title">
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003914 <intent-filter>
3915 <action android:name="android.intent.action.MAIN" />
3916 <action android:name="android.settings.WIFI_CALLING_SETTINGS" />
3917 <category android:name="android.intent.category.DEFAULT" />
3918 <category android:name="android.intent.category.VOICE_LAUNCH" />
3919 </intent-filter>
3920 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb91db422018-02-09 10:25:55 -08003921 android:value="com.android.settings.wifi.calling.WifiCallingSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003922 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3923 android:value="@string/menu_key_network"/>
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003924 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3925 android:value="true" />
Pavel Zhamaitsiak4ab32562015-02-23 15:34:07 -08003926 </activity>
3927
Fan Zhangb91db422018-02-09 10:25:55 -08003928 <activity android:name=".wifi.calling.WifiCallingSuggestionActivity"
Jason Monkd3ac2392016-01-27 13:54:35 -05003929 android:label="@string/wifi_calling_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003930 android:exported="true"
Mill Chen71958002019-01-23 10:44:39 +08003931 android:icon="@drawable/ic_suggestion_wireless">
Jason Monkd3ac2392016-01-27 13:54:35 -05003932 <intent-filter>
3933 <action android:name="android.intent.action.MAIN" />
Fan Zhang7afbf0f2017-05-08 09:31:01 -07003934 <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003935 </intent-filter>
3936 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhangb91db422018-02-09 10:25:55 -08003937 android:value="com.android.settings.wifi.calling.WifiCallingSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003938 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3939 android:value="@string/menu_key_network"/>
Jason Monkd3ac2392016-01-27 13:54:35 -05003940 <meta-data android:name="com.android.settings.dismiss"
Fan Zhangaf91c1f2017-06-03 15:24:11 -07003941 android:value="10,14,30" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003942 <meta-data android:name="com.android.settings.title"
3943 android:resource="@string/wifi_calling_suggestion_title" />
Jason Monkec1f28e2016-02-24 17:39:29 -05003944 <meta-data android:name="com.android.settings.summary"
3945 android:resource="@string/wifi_calling_suggestion_summary" />
Jason Monkd3ac2392016-01-27 13:54:35 -05003946 </activity>
3947
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003948 <provider
3949 android:name=".search.SettingsSearchIndexablesProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003950 android:authorities="${applicationId}"
Fabrice Di Megliofa7dc242014-03-12 19:24:43 -07003951 android:multiprocess="false"
3952 android:grantUriPermissions="true"
3953 android:permission="android.permission.READ_SEARCH_INDEXABLES"
3954 android:exported="true">
3955 <intent-filter>
3956 <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
3957 </intent-filter>
3958 </provider>
3959
Fan Zhang2985a072017-09-27 17:32:46 -07003960 <provider
3961 android:name=".dashboard.suggestions.SuggestionStateProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08003962 android:authorities="${applicationId}.suggestions.status"
Fan Zhang2985a072017-09-27 17:32:46 -07003963 android:exported="true">
3964 <intent-filter>
3965 <action android:name="com.android.settings.action.SUGGESTION_STATE_PROVIDER" />
3966 </intent-filter>
3967 </provider>
3968
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003969 <activity
3970 android:name="Settings$OverlaySettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02003971 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003972 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08003973 android:label="@string/draw_overlay">
Billy Lau7f70ba12015-07-03 17:01:18 +01003974 <intent-filter android:priority="1">
3975 <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" />
3976 <category android:name="android.intent.category.DEFAULT" />
3977 </intent-filter>
Billy Laufee78562015-07-27 12:57:07 +01003978 <intent-filter android:priority="1">
3979 <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" />
3980 <category android:name="android.intent.category.DEFAULT" />
3981 <data android:scheme="package" />
3982 </intent-filter>
3983 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Bernardo Rufino897a0e02019-11-06 15:00:27 +00003984 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08003985 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
3986 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08003987 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
3988 android:value="true" />
Billy Laufee78562015-07-27 12:57:07 +01003989 </activity>
3990
Fan Zhangdb26cfb2018-02-07 17:32:17 -08003991 <activity
Bernardo Rufino88540312019-11-25 19:40:53 +00003992 android:name="Settings$AppDrawOverlaySettingsActivity"
3993 android:label="@string/draw_overlay"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07003994 android:exported="true"
Bernardo Rufino88540312019-11-25 19:40:53 +00003995 android:permission="android.permission.INTERNAL_SYSTEM_WINDOW">
3996 <intent-filter android:priority="1">
3997 <action android:name="android.settings.MANAGE_APP_OVERLAY_PERMISSION" />
3998 <category android:name="android.intent.category.DEFAULT" />
3999 <data android:scheme="package" />
4000 </intent-filter>
4001 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4002 android:value="com.android.settings.applications.appinfo.DrawOverlayDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004003 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4004 android:value="@string/menu_key_apps"/>
Bernardo Rufino88540312019-11-25 19:40:53 +00004005 </activity>
4006
4007 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004008 android:name="Settings$WriteSettingsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004009 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004010 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004011 android:label="@string/write_settings_title">
Billy Lau7f70ba12015-07-03 17:01:18 +01004012 <intent-filter android:priority="1">
4013 <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08004014 <category android:name="android.intent.category.BROWSABLE" />
Billy Lau7f70ba12015-07-03 17:01:18 +01004015 <category android:name="android.intent.category.DEFAULT" />
4016 </intent-filter>
Billy Laubb3aa262015-07-21 16:43:17 +01004017 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07004018 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004019 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4020 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08004021 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4022 android:value="true" />
Billy Lau7f70ba12015-07-03 17:01:18 +01004023 </activity>
4024
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004025 <activity
4026 android:name="Settings$AppWriteSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004027 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004028 android:label="@string/write_settings_title">
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004029 <intent-filter android:priority="1">
4030 <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" />
4031 <category android:name="android.intent.category.DEFAULT" />
4032 <data android:scheme="package" />
4033 </intent-filter>
4034 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingebf88432017-12-11 11:18:10 -08004035 android:value="com.android.settings.applications.appinfo.WriteSettingsDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004036 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4037 android:value="@string/menu_key_apps"/>
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004038 </activity>
4039
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004040 <activity
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004041 android:name="Settings$AlarmsAndRemindersActivity"
4042 android:exported="true"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004043 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004044 android:label="@string/alarms_and_reminders_label">
4045 <intent-filter android:priority="1">
4046 <action android:name="android.settings.REQUEST_SCHEDULE_EXACT_ALARM" />
4047 <category android:name="android.intent.category.DEFAULT" />
4048 </intent-filter>
4049 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4050 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004051 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4052 android:value="@string/menu_key_apps"/>
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004053 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4054 android:value="true" />
4055 </activity>
4056
4057 <activity
4058 android:name="Settings$AlarmsAndRemindersAppActivity"
4059 android:exported="true"
4060 android:label="@string/alarms_and_reminders_label">
4061 <intent-filter android:priority="1">
4062 <action android:name="android.settings.REQUEST_SCHEDULE_EXACT_ALARM" />
4063 <category android:name="android.intent.category.DEFAULT" />
4064 <data android:scheme="package" />
4065 </intent-filter>
4066 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4067 android:value="com.android.settings.applications.appinfo.AlarmsAndRemindersDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004068 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4069 android:value="@string/menu_key_apps"/>
Suprabh Shuklac8b92402021-02-17 18:00:35 -08004070 </activity>
4071
4072 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004073 android:name="Settings$ManageExternalSourcesActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004074 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004075 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004076 android:label="@string/install_other_apps">
Suprabh Shukla57d92312016-12-16 14:44:05 -08004077 <intent-filter android:priority="1">
Suprabh Shuklaed0ba742017-04-20 16:02:54 -07004078 <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" />
Suprabh Shukla57d92312016-12-16 14:44:05 -08004079 <category android:name="android.intent.category.DEFAULT" />
4080 </intent-filter>
4081 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhanga8cac7a2017-10-11 16:44:41 -07004082 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004083 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4084 android:value="@string/menu_key_apps"/>
Raff Tsai613f15a2020-01-05 21:56:35 +08004085 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4086 android:value="true" />
Suprabh Shukla57d92312016-12-16 14:44:05 -08004087 </activity>
4088
Suprabh Shuklaf59d2112017-03-06 17:51:05 -08004089 <activity android:name="Settings$ManageAppExternalSourcesActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004090 android:exported="true"
Fan Zhang416ff0a2018-10-26 15:39:39 -07004091 android:label="@string/install_other_apps">
Billy Laufee78562015-07-27 12:57:07 +01004092 <intent-filter android:priority="1">
Suprabh Shuklaed0ba742017-04-20 16:02:54 -07004093 <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" />
Billy Laufee78562015-07-27 12:57:07 +01004094 <category android:name="android.intent.category.DEFAULT" />
4095 <data android:scheme="package" />
4096 </intent-filter>
4097 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Doris Lingebf88432017-12-11 11:18:10 -08004098 android:value="com.android.settings.applications.appinfo.ExternalSourcesDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004099 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4100 android:value="@string/menu_key_apps"/>
Billy Laufee78562015-07-27 12:57:07 +01004101 </activity>
4102
arangelove35badd2017-10-27 13:51:28 +01004103 <activity android:name=".enterprise.ActionDisabledByAdminDialog"
Edgar Wang83507b52021-05-27 00:47:03 +08004104 android:theme="@style/Theme.AlertDialog"
Mill Chen078af332019-04-04 15:39:27 -07004105 android:taskAffinity="com.android.settings.enterprise"
Sudheer Shankafee4e3e2016-02-18 17:48:01 +00004106 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004107 android:exported="true"
Sudheer Shankafee4e3e2016-02-18 17:48:01 +00004108 android:launchMode="singleTop">
Sudheer Shankabc1c50c2018-02-13 17:19:38 -08004109 <intent-filter android:priority="1">
Sudheer Shankacb99d942015-12-31 17:46:29 +00004110 <action android:name="android.settings.SHOW_ADMIN_SUPPORT_DETAILS" />
Sudheer Shanka9159fe92015-11-23 12:07:05 +00004111 <category android:name="android.intent.category.DEFAULT" />
4112 </intent-filter>
4113 </activity>
4114
Ricky Waic76a11f2022-01-25 23:04:26 +00004115 <activity android:name=".ActionDisabledByAppOpsDialog"
4116 android:theme="@style/Theme.AlertDialog"
4117 android:taskAffinity="com.android.settings.appops"
4118 android:excludeFromRecents="true"
menghanli3676d1b2022-12-26 11:55:04 +08004119 android:exported="true"
Ricky Waic76a11f2022-01-25 23:04:26 +00004120 android:launchMode="singleTop">
4121 <intent-filter android:priority="1">
4122 <action android:name="android.settings.SHOW_RESTRICTED_SETTING_DIALOG" />
4123 <category android:name="android.intent.category.DEFAULT" />
4124 </intent-filter>
4125 </activity>
4126
shafika54d7a82020-01-08 18:03:22 +00004127 <activity
4128 android:name="Settings$ManageExternalStorageActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004129 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004130 android:exported="true"
shafika54d7a82020-01-08 18:03:22 +00004131 android:label="@string/manage_external_storage_title">
4132 <intent-filter android:priority="1">
4133 <action android:name="android.settings.MANAGE_ALL_FILES_ACCESS_PERMISSION" />
4134 <category android:name="android.intent.category.DEFAULT" />
4135 </intent-filter>
4136 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4137 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004138 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4139 android:value="@string/menu_key_storage"/>
shafika54d7a82020-01-08 18:03:22 +00004140 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4141 android:value="true" />
4142 </activity>
4143
4144 <activity
4145 android:name="Settings$AppManageExternalStorageActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004146 android:exported="true"
shafikc32844922020-01-20 16:01:21 +00004147 android:label="@string/manage_external_storage_title">
shafika54d7a82020-01-08 18:03:22 +00004148 <intent-filter android:priority="1">
4149 <action android:name="android.settings.MANAGE_APP_ALL_FILES_ACCESS_PERMISSION" />
4150 <category android:name="android.intent.category.DEFAULT" />
4151 <data android:scheme="package" />
4152 </intent-filter>
4153 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4154 android:value="com.android.settings.applications.appinfo.ManageExternalStorageDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004155 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4156 android:value="@string/menu_key_apps"/>
shafika54d7a82020-01-08 18:03:22 +00004157 </activity>
4158
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004159 <activity
4160 android:name="Settings$MediaManagementAppsActivity"
Viesturs Zarinsac347ed2023-05-16 14:26:42 +02004161 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004162 android:exported="true"
4163 android:label="@string/media_management_apps_title">
4164 <intent-filter android:priority="1">
4165 <action android:name="android.settings.REQUEST_MANAGE_MEDIA" />
4166 <category android:name="android.intent.category.DEFAULT" />
4167 </intent-filter>
4168 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4169 android:value="com.android.settings.applications.manageapplications.ManageApplications" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004170 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4171 android:value="@string/menu_key_apps"/>
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004172 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4173 android:value="true" />
4174 </activity>
4175
4176 <activity
4177 android:name="Settings$AppMediaManagementAppsActivity"
4178 android:exported="true"
4179 android:label="@string/media_management_apps_title">
4180 <intent-filter android:priority="1">
4181 <action android:name="android.settings.REQUEST_MANAGE_MEDIA" />
4182 <category android:name="android.intent.category.DEFAULT" />
4183 <data android:scheme="package" />
4184 </intent-filter>
4185 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4186 android:value="com.android.settings.applications.appinfo.MediaManagementAppsDetails" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004187 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4188 android:value="@string/menu_key_apps"/>
Ivan Chiangd01c81e2021-03-09 10:39:45 +08004189 </activity>
4190
Gustav Sennton4d3334c2016-12-13 19:16:48 +00004191 <!-- Keep compatibility with old WebView-picker implementation -->
4192 <activity-alias android:name=".WebViewImplementation"
Gustav Sennton5b596282017-02-03 16:19:02 +00004193 android:targetActivity="Settings$WebViewAppPickerActivity"
Jason Monk75199542016-05-06 15:09:32 -04004194 android:exported="true"
4195 android:excludeFromRecents="true"
Andrew Sapperstein7e157432016-07-15 16:46:38 -07004196 android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert">
Jason Monk75199542016-05-06 15:09:32 -04004197 <intent-filter>
4198 <action android:name="android.settings.WEBVIEW_SETTINGS" />
4199 <category android:name="android.intent.category.DEFAULT" />
4200 </intent-filter>
4201 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4202 android:value="true" />
Gustav Sennton5b596282017-02-03 16:19:02 +00004203 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4204 android:value="com.android.settings.webview.WebViewAppPicker" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004205 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4206 android:value="@string/menu_key_system"/>
Doris Lingd299b032017-02-28 17:32:36 -08004207 </activity-alias>
Doris Ling91365232016-05-23 17:06:26 -07004208
Chandan Nath0bfef632019-01-28 21:15:13 +00004209 <provider
Raff Tsai6db277e2019-10-02 16:43:23 +08004210 android:name=".dashboard.SummaryProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004211 android:authorities="${applicationId}.dashboard.SummaryProvider">
Chandan Nath0bfef632019-01-28 21:15:13 +00004212 </provider>
4213
4214 <activity android:name=".backup.UserBackupSettingsActivity"
Doris Ling26bf0032016-06-15 18:16:09 -07004215 android:label="@string/privacy_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004216 android:exported="true"
Chandan Nath0bfef632019-01-28 21:15:13 +00004217 android:icon="@drawable/ic_settings_backup">
Doris Ling26bf0032016-06-15 18:16:09 -07004218 <intent-filter>
4219 <action android:name="android.intent.action.MAIN" />
4220 <category android:name="android.intent.category.DEFAULT" />
4221 <category android:name="android.intent.category.VOICE_LAUNCH" />
4222 </intent-filter>
Chandan Nath0bfef632019-01-28 21:15:13 +00004223 <!-- Mark the activity as a dynamic setting -->
4224 <intent-filter>
4225 <action android:name="com.android.settings.action.IA_SETTINGS" />
4226 </intent-filter>
4227 <!-- Tell Settings app which category it belongs to -->
4228 <meta-data android:name="com.android.settings.category"
4229 android:value="com.android.settings.category.ia.system" />
Jason Chiu5f0fc1f2021-05-24 18:27:42 +08004230 <meta-data android:name="com.android.settings.icon"
4231 android:resource="@drawable/ic_settings_backup" />
Chandan Nath0bfef632019-01-28 21:15:13 +00004232 <meta-data android:name="com.android.settings.order" android:value="-60"/>
Doris Ling26bf0032016-06-15 18:16:09 -07004233 </activity>
4234
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004235 <activity
4236 android:name="Settings$AutomaticStorageManagerSettingsActivity"
4237 android:exported="@bool/config_storage_manager_settings_enabled"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004238 android:label="@string/automatic_storage_manager_settings">
Daniel Nishi39818892016-09-20 16:40:49 -07004239 <intent-filter android:priority="1">
4240 <action android:name="android.settings.STORAGE_MANAGER_SETTINGS" />
4241 <category android:name="android.intent.category.DEFAULT" />
4242 </intent-filter>
4243 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4244 android:value="com.android.settings.deletionhelper.AutomaticStorageManagerSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004245 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4246 android:value="@string/menu_key_storage"/>
Daniel Nishi39818892016-09-20 16:40:49 -07004247 </activity>
Fan Zhangcc335d92016-09-29 14:37:14 -07004248
Sean Stout64417232019-04-05 12:34:44 -07004249 <!-- Show app-level advanced power usage details (app passed in as extras) -->
4250 <activity
4251 android:name=".fuelgauge.AdvancedPowerUsageDetailActivity"
4252 android:excludeFromRecents="true"
4253 android:launchMode="singleInstance"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004254 android:exported="true"
Sean Stout64417232019-04-05 12:34:44 -07004255 android:theme="@android:style/Theme.NoDisplay">
4256 <intent-filter>
Sean Stout75ea57a2020-07-14 23:32:14 +00004257 <action android:name="android.settings.VIEW_ADVANCED_POWER_USAGE_DETAIL" />
Sean Stout64417232019-04-05 12:34:44 -07004258 <category android:name="android.intent.category.DEFAULT" />
4259 <data android:scheme="package" />
4260 </intent-filter>
4261 </activity>
4262
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004263 <activity
Yanting Yang92fce8e2020-12-17 23:26:49 +08004264 android:name=".Settings$AppDashboardActivity"
4265 android:label="@string/apps_dashboard_title"
4266 android:icon="@drawable/ic_homepage_apps"
4267 android:exported="true">
4268 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4269 android:value="com.android.settings.applications.AppDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004270 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4271 android:value="@string/menu_key_apps"/>
Yanting Yang92fce8e2020-12-17 23:26:49 +08004272 </activity>
4273
4274 <activity
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004275 android:name=".Settings$AccountDashboardActivity"
4276 android:label="@string/account_dashboard_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004277 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004278 android:icon="@drawable/ic_homepage_accounts">
Fan Zhange2de8d52017-02-13 12:28:43 -08004279 <intent-filter android:priority="1">
4280 <action android:name="android.settings.SYNC_SETTINGS" />
Han Xub7d10772022-08-15 19:19:55 +08004281 <category android:name="android.intent.category.BROWSABLE" />
Fan Zhange2de8d52017-02-13 12:28:43 -08004282 <category android:name="android.intent.category.DEFAULT" />
Becca Hughesb5f8ba62023-02-03 00:04:21 +00004283 </intent-filter>
4284 <intent-filter android:priority="1">
4285 <action android:name="android.settings.CREDENTIAL_PROVIDER" />
4286 <category android:name="android.intent.category.DEFAULT" />
4287 <data android:scheme="package" />
Fan Zhange2de8d52017-02-13 12:28:43 -08004288 </intent-filter>
Fan Zhang5a981772018-06-22 14:30:09 -07004289 <intent-filter android:priority="53">
Fan Zhang2f4355a2018-06-21 15:34:43 -07004290 <action android:name="android.intent.action.MAIN" />
4291 <category android:name="com.android.settings.SHORTCUT" />
4292 </intent-filter>
Fan Zhangb75fdfc2016-12-14 11:35:28 -08004293 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
Fan Zhang881d5792018-01-26 10:15:56 -08004294 android:value="com.android.settings.accounts.AccountDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004295 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4296 android:value="@string/menu_key_accounts"/>
Rubin Xu71560fc2018-05-17 14:48:49 +01004297 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4298 android:value="true" />
Fan Zhangb75fdfc2016-12-14 11:35:28 -08004299 </activity>
4300
Fan Zhangdb26cfb2018-02-07 17:32:17 -08004301 <activity
4302 android:name=".Settings$SystemDashboardActivity"
4303 android:label="@string/header_category_system"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004304 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004305 android:icon="@drawable/ic_homepage_system_dashboard">
Fan Zhang5a981772018-06-22 14:30:09 -07004306 <intent-filter android:priority="70">
Fan Zhang2f4355a2018-06-21 15:34:43 -07004307 <action android:name="android.intent.action.MAIN" />
4308 <category android:name="com.android.settings.SHORTCUT" />
4309 </intent-filter>
Fan Zhangcc335d92016-09-29 14:37:14 -07004310 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4311 android:value="com.android.settings.system.SystemDashboardFragment"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004312 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4313 android:value="@string/menu_key_system"/>
Fan Zhangcc335d92016-09-29 14:37:14 -07004314 </activity>
4315
Fan Zhangb4737302017-05-31 12:43:48 -07004316 <activity android:name=".support.SupportDashboardActivity"
Fan Zhangcc335d92016-09-29 14:37:14 -07004317 android:label="@string/page_tab_title_support"
Fan Zhang925a4f82018-01-23 16:35:31 -08004318 android:icon="@drawable/ic_homepage_support"
Daniel Nishi67ca29f2017-07-17 12:49:04 -07004319 android:theme="@android:style/Theme.DeviceDefault.Light.Panel"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004320 android:exported="true"
Fan Zhang6ff6add2017-03-02 12:07:38 -08004321 android:enabled="@bool/config_support_enabled">
Fan Zhang9445d152018-08-06 10:03:07 -07004322 <intent-filter>
Maurice Lam5f0edba2017-06-08 11:57:40 -07004323 <action android:name="com.android.settings.action.SUPPORT_SETTINGS" />
4324 <category android:name="android.intent.category.DEFAULT" />
4325 </intent-filter>
Fan Zhanga96a2d82016-09-27 17:51:11 -07004326 </activity>
4327
Jason Monkdc252eb2016-01-30 11:36:52 -05004328 <service
4329 android:name=".SettingsDumpService"
4330 android:exported="true"
4331 android:permission="android.permission.DUMP" />
4332
Dan Sandler3bd52dd2016-03-24 10:24:27 -07004333 <!-- Quick Settings tiles for Developer Options -->
4334 <service
Fan Zhang83332602017-10-09 15:53:16 -07004335 android:name=".development.qstile.DevelopmentTiles$ShowLayout"
Sunny Goyalc9607512017-02-06 15:19:00 -08004336 android:label="@string/debug_layout"
4337 android:icon="@drawable/tile_icon_show_layout"
Sunny Goyalbf9f2d22016-11-02 11:20:17 -07004338 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004339 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004340 android:enabled="false">
4341 <intent-filter>
4342 <action android:name="android.service.quicksettings.action.QS_TILE" />
4343 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004344 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004345 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004346 </service>
4347 <service
Fan Zhang83332602017-10-09 15:53:16 -07004348 android:name=".development.qstile.DevelopmentTiles$GPUProfiling"
Sunny Goyalc9607512017-02-06 15:19:00 -08004349 android:label="@string/track_frame_time"
4350 android:icon="@drawable/tile_icon_graphics"
4351 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004352 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004353 android:enabled="false">
4354 <intent-filter>
4355 <action android:name="android.service.quicksettings.action.QS_TILE" />
4356 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004357 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004358 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004359 </service>
4360 <service
Fan Zhang83332602017-10-09 15:53:16 -07004361 android:name=".development.qstile.DevelopmentTiles$ForceRTL"
Sunny Goyalc9607512017-02-06 15:19:00 -08004362 android:label="@string/force_rtl_layout_all_locales"
4363 android:icon="@drawable/tile_icon_force_rtl"
4364 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004365 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004366 android:enabled="false">
4367 <intent-filter>
4368 <action android:name="android.service.quicksettings.action.QS_TILE" />
4369 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004370 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004371 android:value="true"/>
Sunny Goyalc9607512017-02-06 15:19:00 -08004372 </service>
4373 <service
Fan Zhang83332602017-10-09 15:53:16 -07004374 android:name=".development.qstile.DevelopmentTiles$AnimationSpeed"
Sunny Goyalc9607512017-02-06 15:19:00 -08004375 android:label="@string/window_animation_scale_title"
4376 android:icon="@drawable/tile_icon_animation_speed"
4377 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004378 android:exported="true"
Sunny Goyalc9607512017-02-06 15:19:00 -08004379 android:enabled="false">
Dan Sandler12c4ba42016-03-28 11:13:40 -04004380 <intent-filter>
4381 <action android:name="android.service.quicksettings.action.QS_TILE" />
4382 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004383 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004384 android:value="true"/>
Dan Sandler12c4ba42016-03-28 11:13:40 -04004385 </service>
Fan Zhang130c4772018-10-01 12:14:06 -07004386
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004387 <service
Vishnu Nair74100b32018-02-22 07:14:36 -08004388 android:name=".development.qstile.DevelopmentTiles$WinscopeTrace"
4389 android:label="@string/winscope_trace_quick_settings_title"
4390 android:icon="@drawable/tile_icon_winscope_trace"
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004391 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004392 android:exported="true"
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004393 android:enabled="false">
4394 <intent-filter>
4395 <action android:name="android.service.quicksettings.action.QS_TILE" />
4396 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004397 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004398 android:value="true"/>
Vishnu Nairdc6bc482018-01-10 16:07:23 -08004399 </service>
Daniel Nishi80c20442016-05-04 10:08:36 -07004400
Michael Groover3a665ac2019-03-19 19:13:17 -07004401 <service
4402 android:name=".development.qstile.DevelopmentTiles$SensorsOff"
4403 android:label="@string/sensors_off_quick_settings_title"
4404 android:icon="@drawable/tile_icon_sensors_off"
4405 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004406 android:exported="true"
Michael Groover3a665ac2019-03-19 19:13:17 -07004407 android:enabled="false">
4408 <intent-filter>
4409 <action android:name="android.service.quicksettings.action.QS_TILE" />
4410 </intent-filter>
Fabian Kozynskie47b82b2020-02-07 10:11:57 -05004411 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
Fabian Kozynskie94d09f2019-06-28 13:23:56 -04004412 android:value="true"/>
Michael Groover3a665ac2019-03-19 19:13:17 -07004413 </service>
4414
Joshua Duong0f3eba32020-04-07 00:17:17 -07004415 <service
4416 android:name=".development.qstile.DevelopmentTiles$WirelessDebugging"
4417 android:label="@string/enable_adb_wireless"
4418 android:icon="@drawable/tile_icon_debugging_wireless"
4419 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004420 android:exported="true"
Joshua Duong0f3eba32020-04-07 00:17:17 -07004421 android:enabled="false">
4422 <intent-filter>
4423 <action android:name="android.service.quicksettings.action.QS_TILE" />
4424 </intent-filter>
4425 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4426 android:value="true"/>
4427 </service>
4428
Chris Ye39b586f2020-06-11 17:57:16 -07004429 <service
4430 android:name=".development.qstile.DevelopmentTiles$ShowTaps"
4431 android:label="@string/show_touches"
4432 android:icon="@drawable/tile_icon_show_taps"
4433 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
Ashwini Oruganti917aa552020-06-24 16:36:28 -07004434 android:exported="true"
Chris Ye39b586f2020-06-11 17:57:16 -07004435 android:enabled="false">
4436 <intent-filter>
4437 <action android:name="android.service.quicksettings.action.QS_TILE" />
4438 </intent-filter>
4439 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4440 android:value="true"/>
4441 </service>
4442
Ats Jenkfe2a1682022-06-17 14:32:59 -07004443 <service
4444 android:name=".development.qstile.DevelopmentTiles$DesktopMode"
4445 android:label="@string/desktop_mode"
4446 android:icon="@drawable/tile_icon_desktop_mode"
4447 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
4448 android:exported="true"
4449 android:enabled="false">
4450 <intent-filter>
4451 <action android:name="android.service.quicksettings.action.QS_TILE" />
4452 </intent-filter>
4453 <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE"
4454 android:value="true"/>
Ats Jenk618876c2022-09-22 16:44:51 -07004455 <meta-data android:name="com.android.settings.development.qstile.REQUIRES_SYSTEM_PROPERTY"
4456 android:value="persist.wm.debug.desktop_mode" />
Ats Jenkfe2a1682022-06-17 14:32:59 -07004457 </service>
4458
Fan Zhang7373ec02018-08-14 13:25:47 -07004459 <activity
4460 android:name=".HelpTrampoline"
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004461 android:exported="true"
Fan Zhang7373ec02018-08-14 13:25:47 -07004462 android:theme="@style/Transparent"
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004463 android:permission="android.permission.DUMP"
Fan Zhang7373ec02018-08-14 13:25:47 -07004464 android:excludeFromRecents="true"
Tsung-Mao Fang98b9b342021-11-17 13:46:08 +08004465 android:enabled="@*android:bool/config_settingsHelpLinksEnabled" />
Jeff Sharkey4f425c82016-07-18 18:28:55 -06004466
Felipe Lemef7d54ba2017-04-25 16:42:55 -07004467 <activity android:name=".applications.autofill.AutofillPickerActivity"
4468 android:excludeFromRecents="true"
4469 android:launchMode="singleInstance"
4470 android:exported="false">
4471 </activity>
4472
4473 <activity android:name=".applications.autofill.AutofillPickerTrampolineActivity"
4474 android:theme="@android:style/Theme.NoDisplay"
4475 android:excludeFromRecents="true"
4476 android:launchMode="singleInstance"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004477 android:exported="true"
Felipe Lemef7d54ba2017-04-25 16:42:55 -07004478 android:label="@string/autofill_app">
Felipe Lemedb2b55a2017-04-24 18:10:09 -07004479 <intent-filter android:priority="1">
4480 <action android:name="android.settings.REQUEST_SET_AUTOFILL_SERVICE" />
4481 <category android:name="android.intent.category.DEFAULT" />
4482 <data android:scheme="package" />
4483 </intent-filter>
4484 </activity>
4485
Daniel Nishi232ebf12018-01-19 14:11:20 -08004486 <activity android:name="Settings$AdvancedConnectedDeviceActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004487 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004488 android:label="@string/connected_device_connections_title">
Daniel Nishi232ebf12018-01-19 14:11:20 -08004489 <intent-filter android:priority="1">
4490 <action android:name="com.android.settings.ADVANCED_CONNECTED_DEVICE_SETTINGS" />
4491 <category android:name="android.intent.category.DEFAULT" />
4492 </intent-filter>
Daniel Nishi232ebf12018-01-19 14:11:20 -08004493 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4494 android:value="com.android.settings.connecteddevice.AdvancedConnectedDeviceDashboardFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004495 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4496 android:value="@string/menu_key_connected_devices"/>
Daniel Nishi232ebf12018-01-19 14:11:20 -08004497 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4498 android:value="true" />
4499 </activity>
4500
Viesturs Zarins6cfc5932022-09-15 16:17:47 +00004501 <activity android:name="Settings$NfcSettingsActivity"
4502 android:exported="true"
4503 android:label="@string/nfc_quick_toggle_title">
4504 <intent-filter android:priority="1">
4505 <action android:name="android.settings.NFC_SETTINGS" />
4506 <category android:name="android.intent.category.DEFAULT" />
4507 </intent-filter>
4508 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4509 android:value="com.android.settings.connecteddevice.NfcAndPaymentFragment" />
4510 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4511 android:value="@string/menu_key_connected_devices"/>
4512 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4513 android:value="true" />
4514 </activity>
4515
jackqdyulei715408e2019-02-07 15:47:52 -08004516 <activity android:name="Settings$BluetoothDeviceDetailActivity"
4517 android:label="@string/device_details_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004518 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06004519 android:permission="android.permission.BLUETOOTH_CONNECT">
jackqdyulei715408e2019-02-07 15:47:52 -08004520 <intent-filter android:priority="1">
4521 <action android:name="com.android.settings.BLUETOOTH_DEVICE_DETAIL_SETTINGS" />
4522 <category android:name="android.intent.category.DEFAULT" />
4523 </intent-filter>
4524 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4525 android:value="com.android.settings.bluetooth.BluetoothDeviceDetailsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004526 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4527 android:value="@string/menu_key_connected_devices"/>
hughchenb78ecc42019-10-16 15:27:17 +08004528 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4529 android:value="true" />
jackqdyulei715408e2019-02-07 15:47:52 -08004530 </activity>
4531
changbettya56e1982022-03-29 01:14:05 +00004532 <activity
4533 android:name="Settings$BluetoothBroadcastActivity"
4534 android:exported="true"
4535 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"
4536 android:permission="android.permission.BLUETOOTH_CONNECT"
4537 android:configChanges="orientation|keyboardHidden|screenSize">
4538 <intent-filter android:priority="1">
4539 <action android:name="android.settings.MEDIA_BROADCAST_DIALOG" />
4540 <category android:name="android.intent.category.DEFAULT" />
4541 </intent-filter>
4542 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
changbettyf31b5762022-04-28 15:49:49 +00004543 android:value="com.android.settings.bluetooth.BluetoothBroadcastDialog" />
changbettya56e1982022-03-29 01:14:05 +00004544 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4545 android:value="true" />
4546 </activity>
4547
4548 <activity
4549 android:name="Settings$BluetoothFindBroadcastsActivity"
4550 android:label="@string/bluetooth_find_broadcast_title"
4551 android:exported="true"
4552 android:permission="android.permission.BLUETOOTH_CONNECT"
4553 android:configChanges="orientation|keyboardHidden|screenSize">
4554 <intent-filter android:priority="1">
4555 <action android:name="android.settings.BLUTOOTH_FIND_BROADCASTS_ACTIVITY" />
4556 <category android:name="android.intent.category.DEFAULT" />
4557 </intent-filter>
4558 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4559 android:value="com.android.settings.bluetooth.BluetoothFindBroadcastsFragment" />
4560 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4561 android:value="true" />
4562 </activity>
4563
Vania Januareb09f892022-12-30 13:24:29 +00004564 <activity
4565 android:name="Settings$StylusUsiDetailsActivity"
4566 android:label="@string/stylus_device_details_title"
4567 android:exported="true">
4568 <intent-filter android:priority="1">
4569 <action android:name="com.android.settings.STYLUS_USI_DETAILS_SETTINGS" />
4570 <category android:name="android.intent.category.DEFAULT" />
4571 </intent-filter>
4572 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4573 android:value="com.android.settings.connecteddevice.stylus.StylusUsiDetailsFragment" />
4574 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4575 android:value="@string/menu_key_connected_devices"/>
4576 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4577 android:value="true" />
4578 </activity>
4579
Matt Fritze90899e02018-10-16 12:41:42 -07004580 <activity android:name=".panel.SettingsPanelActivity"
4581 android:label="@string/settings_panel_title"
lindatsenge972b162019-04-19 15:40:20 -07004582 android:theme="@style/Theme.Panel"
lindatseng2943c1d2019-05-02 17:12:27 -07004583 android:launchMode="singleInstance"
Matt Fritze90899e02018-10-16 12:41:42 -07004584 android:excludeFromRecents="true"
Tim Penge54e0292020-04-15 10:49:35 +08004585 android:configChanges="orientation|keyboardHidden|screenSize"
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004586 android:exported="true">
Matt Fritze90899e02018-10-16 12:41:42 -07004587 <intent-filter>
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004588 <action android:name="android.settings.panel.action.INTERNET_CONNECTIVITY" />
Matt Fritze90899e02018-10-16 12:41:42 -07004589 <category android:name="android.intent.category.DEFAULT" />
4590 </intent-filter>
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004591 <intent-filter>
Matthew Fritze63cce452019-03-05 08:17:37 -08004592 <action android:name="android.settings.panel.action.NFC" />
Matthew Fritze735d6ef2018-12-05 07:55:12 -08004593 <category android:name="android.intent.category.DEFAULT" />
4594 </intent-filter>
Matthew Fritze3f743ae2019-01-22 15:53:37 -08004595 <intent-filter>
Matthew Fritze63cce452019-03-05 08:17:37 -08004596 <action android:name="android.settings.panel.action.WIFI" />
4597 <category android:name="android.intent.category.DEFAULT" />
4598 </intent-filter>
4599 <intent-filter>
4600 <action android:name="android.settings.panel.action.VOLUME" />
Matthew Fritze3f743ae2019-01-22 15:53:37 -08004601 <category android:name="android.intent.category.DEFAULT" />
4602 </intent-filter>
Matt Fritze90899e02018-10-16 12:41:42 -07004603 </activity>
4604
govenliud507b562019-11-21 09:36:58 +08004605 <activity android:name=".wifi.addappnetworks.AddAppNetworksActivity"
4606 android:label="@string/settings_panel_title"
4607 android:theme="@style/Theme.Panel"
4608 android:launchMode="singleInstance"
4609 android:excludeFromRecents="true"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004610 android:exported="true"
Chaohui Wangdfd7f8f2023-04-26 12:28:51 +08004611 android:configChanges="orientation|keyboard|keyboardHidden|screenSize|smallestScreenSize|screenLayout">
govenliud507b562019-11-21 09:36:58 +08004612 <intent-filter>
4613 <action android:name="android.settings.WIFI_ADD_NETWORKS" />
4614 <category android:name="android.intent.category.DEFAULT" />
4615 </intent-filter>
4616 </activity>
4617
Matthew Fritze7fddfeb2017-12-11 15:01:11 -08004618 <provider android:name=".slices.SettingsSliceProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004619 android:authorities="${applicationId}.slices;android.settings.slices"
Jason Monkf6edc7c2017-11-22 10:04:38 -05004620 android:exported="true"
Fan Zhang671a39f2019-02-11 14:38:13 -08004621 android:grantUriPermissions="true" />
Mady Mellor7c740852017-11-03 09:17:05 -07004622
4623 <receiver
Matthew Fritzee8d66bb2018-07-30 14:12:50 -07004624 android:name=".slices.SliceBroadcastReceiver"
Fan Zhang0c7c59f2018-10-26 13:40:38 -07004625 android:exported="false" />
Matthew Fritzee8d66bb2018-07-30 14:12:50 -07004626
4627 <receiver
4628 android:name=".slices.SliceRelayReceiver"
4629 android:permission="android.permission.MANAGE_SLICE_PERMISSIONS"
Fan Zhang0c7c59f2018-10-26 13:40:38 -07004630 android:exported="true" />
Mady Mellor7c740852017-11-03 09:17:05 -07004631
Jason Chiu2c7b77d2020-08-20 16:22:44 +08004632 <receiver
4633 android:name=".slices.VolumeSliceRelayReceiver"
4634 android:permission="android.permission.MANAGE_SLICE_PERMISSIONS"
4635 android:exported="true" />
4636
jackqdyulei821adce2018-01-29 19:20:37 -08004637 <!-- Couldn't be triggered from outside of settings. Statsd can trigger it because we send
4638 PendingIntent to it-->
4639 <receiver android:name=".fuelgauge.batterytip.AnomalyDetectionReceiver"
4640 android:exported="false" />
4641
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004642 <receiver android:name=".fuelgauge.batterytip.AnomalyConfigReceiver"
4643 android:exported="true">
jackqdyuleie1604d32018-01-31 20:24:47 -08004644 <intent-filter>
4645 <action android:name="android.app.action.STATSD_STARTED"/>
4646 <action android:name="android.intent.action.BOOT_COMPLETED"/>
4647 </intent-filter>
4648 </receiver>
4649
jackqdyulei0fa413e2018-02-23 10:59:27 -08004650 <service android:name=".fuelgauge.batterytip.AnomalyCleanupJobService"
jackqdyulei338ae2f2018-02-16 10:06:08 -08004651 android:permission="android.permission.BIND_JOB_SERVICE" />
4652
Lei Yu9a80d6e2018-03-15 15:55:07 -07004653 <service android:name=".fuelgauge.batterytip.AnomalyConfigJobService"
4654 android:permission="android.permission.BIND_JOB_SERVICE" />
4655
jackqdyulei3ee28c82018-02-20 15:07:26 -08004656 <service android:name=".fuelgauge.batterytip.AnomalyDetectionJobService"
4657 android:permission="android.permission.BIND_JOB_SERVICE" />
4658
Sunny Shao195f61b2018-07-24 18:15:55 +08004659 <provider
Fan Zhang5e6e6a12018-10-25 14:19:43 -07004660 android:name=".homepage.contextualcards.CardContentProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004661 android:authorities="${applicationId}.homepage.CardContentProvider"
Sunny Shao195f61b2018-07-24 18:15:55 +08004662 android:exported="true"
4663 android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA" />
4664
Raff Tsai3936e9f2018-09-28 17:42:43 +08004665 <provider
4666 android:name=".homepage.contextualcards.SettingsContextualCardProvider"
Chaohui Wangbb4d0252022-10-12 17:41:07 +08004667 android:authorities="${applicationId}.homepage.contextualcards"
Raff Tsai3936e9f2018-09-28 17:42:43 +08004668 android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA"
4669 android:exported="true">
4670 <intent-filter>
4671 <action android:name="android.content.action.SETTINGS_HOMEPAGE_DATA"/>
4672 </intent-filter>
4673 </provider>
Arc Wang4591d822018-11-19 15:48:29 +08004674
4675 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004676 android:name=".wifi.dpp.WifiDppConfiguratorActivity"
4677 android:exported="true">
Arc Wange43bb772018-12-03 17:16:55 +08004678 <intent-filter>
4679 <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_SCANNER"/>
4680 <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_GENERATOR"/>
Arc Wange43bb772018-12-03 17:16:55 +08004681 <category android:name="android.intent.category.DEFAULT"/>
4682 </intent-filter>
Arc Wangc1036df2019-02-26 15:19:30 +08004683 <intent-filter>
4684 <action android:name="android.settings.PROCESS_WIFI_EASY_CONNECT_URI"/>
4685 <category android:name="android.intent.category.DEFAULT"/>
4686 <data android:scheme="DPP"/>
4687 </intent-filter>
Arc Wange43bb772018-12-03 17:16:55 +08004688 </activity>
Yi-Ling Chuang68f37a12018-11-20 19:51:13 +08004689
Arc Wang4ab0d162018-12-07 16:00:18 +08004690 <activity
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004691 android:name=".wifi.dpp.WifiDppEnrolleeActivity"
4692 android:exported="true">
Arc Wang4ab0d162018-12-07 16:00:18 +08004693 <intent-filter>
4694 <action android:name="android.settings.WIFI_DPP_ENROLLEE_QR_CODE_SCANNER"/>
4695 <category android:name="android.intent.category.DEFAULT"/>
4696 </intent-filter>
4697 </activity>
4698
Yi-Ling Chuang68f37a12018-11-20 19:51:13 +08004699 <activity android:name=".homepage.contextualcards.ContextualCardFeedbackDialog"
4700 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
manabu, shimoda9fae7392017-11-08 11:32:31 +09004701
joshmccloskeybba76322019-09-19 11:23:29 -07004702 <activity android:name=".homepage.contextualcards.FaceReEnrollDialog"
4703 android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" />
4704
manabu, shimoda9fae7392017-11-08 11:32:31 +09004705 <activity
4706 android:name="Settings$WifiCallingDisclaimerActivity"
4707 android:label="@string/wifi_calling_settings_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004708 android:exported="true"
manabu, shimoda9fae7392017-11-08 11:32:31 +09004709 android:taskAffinity="com.android.settings">
4710 <intent-filter>
4711 <action android:name="android.intent.action.MAIN" />
4712 <category android:name="android.intent.category.DEFAULT" />
4713 </intent-filter>
4714 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4715 android:value="com.android.settings.wifi.calling.WifiCallingDisclaimerFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004716 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4717 android:value="@string/menu_key_network"/>
manabu, shimoda9fae7392017-11-08 11:32:31 +09004718 </activity>
Salvador Martinez32917042019-03-20 15:23:19 -07004719
4720 <activity android:name="Settings$BatterySaverScheduleSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004721 android:exported="true"
Jason Chiubbaf0a02019-11-05 12:30:58 +08004722 android:label="@string/battery_saver_schedule_settings_title">
Salvador Martinez32917042019-03-20 15:23:19 -07004723 <intent-filter>
4724 <action android:name="com.android.settings.BATTERY_SAVER_SCHEDULE_SETTINGS" />
4725 <category android:name="android.intent.category.DEFAULT" />
4726 </intent-filter>
4727 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4728 android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverScheduleSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004729 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4730 android:value="@string/menu_key_battery"/>
Salvador Martinez32917042019-03-20 15:23:19 -07004731 </activity>
Steve Elliotte7721232019-05-22 14:13:29 -04004732
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004733 <activity android:name="Settings$PowerMenuSettingsActivity"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004734 android:exported="true"
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004735 android:label="@string/power_menu_setting_name">
4736 <intent-filter>
4737 <action android:name="android.settings.ACTION_POWER_MENU_SETTINGS" />
4738 <category android:name="android.intent.category.DEFAULT" />
4739 </intent-filter>
4740 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4741 android:value="com.android.settings.gestures.PowerMenuSettings" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004742 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4743 android:value="@string/menu_key_system"/>
Fabian Kozynski83df54b2020-03-24 16:37:57 -04004744 </activity>
4745
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004746 <activity
4747 android:name="Settings$GestureNavigationSettingsActivity"
4748 android:label="@string/gesture_settings_activity_title"
Ashwini Orugantifd9721f2020-05-20 14:42:18 -07004749 android:exported="true"
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004750 android:enabled="true">
4751 <intent-filter android:priority="32">
4752 <action android:name="android.intent.action.MAIN" />
4753 <category android:name="com.android.settings.SHORTCUT" />
4754 </intent-filter>
4755 <intent-filter android:priority="1">
4756 <action android:name="com.android.settings.GESTURE_NAVIGATION_SETTINGS" />
4757 <category android:name="android.intent.category.DEFAULT" />
4758 </intent-filter>
4759 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4760 android:value="com.android.settings.gestures.GestureNavigationSettingsFragment" />
Jason Chiu29a09e52021-10-12 17:24:34 +08004761 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4762 android:value="@string/menu_key_system"/>
Mehdi Alizadeh03555962019-12-13 15:31:53 -08004763 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4764 android:value="true" />
4765 </activity>
4766
Jernej Virag97ea2792021-08-09 18:11:28 +00004767 <activity
4768 android:name="Settings$ButtonNavigationSettingsActivity"
Xuanang Zhao0cc01492022-11-02 13:55:21 +08004769 android:label="@string/button_navigation_settings_activity_title"
Jernej Virag97ea2792021-08-09 18:11:28 +00004770 android:exported="true"
4771 android:enabled="true">
4772 <intent-filter android:priority="32">
4773 <action android:name="android.intent.action.MAIN" />
4774 <category android:name="com.android.settings.SHORTCUT" />
4775 </intent-filter>
4776 <intent-filter android:priority="1">
4777 <action android:name="com.android.settings.BUTTON_NAVIGATION_SETTINGS" />
4778 <category android:name="android.intent.category.DEFAULT" />
4779 </intent-filter>
4780 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4781 android:value="com.android.settings.gestures.ButtonNavigationSettingsFragment" />
4782 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4783 android:value="true" />
4784 </activity>
4785
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004786 <activity android:name="Settings$MediaControlsSettingsActivity"
4787 android:exported="true"
bvineeth5b90dfa2021-11-16 06:44:41 +00004788 android:label="@string/media_controls_title">
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004789 <intent-filter>
4790 <action android:name="android.settings.ACTION_MEDIA_CONTROLS_SETTINGS" />
4791 <category android:name="android.intent.category.DEFAULT" />
4792 </intent-filter>
4793 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4794 android:value="com.android.settings.sound.MediaControlsSettings" />
Jason Chiu646a31e2021-11-10 11:56:00 +08004795 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4796 android:value="@string/menu_key_sound"/>
Beth Thibodeau59cbd112020-06-09 23:38:41 -04004797 </activity>
4798
timhypengc3bd8012020-09-02 15:54:18 +08004799 <receiver
4800 android:name=".media.BluetoothPairingReceiver"
4801 android:exported="true"
Jeff Sharkey7025a832021-06-22 19:58:58 -06004802 android:permission="android.permission.BLUETOOTH_CONNECT">
timhypengc3bd8012020-09-02 15:54:18 +08004803 <intent-filter>
4804 <action android:name="com.android.settings.action.LAUNCH_BLUETOOTH_PAIRING"/>
Jason Chiu29a09e52021-10-12 17:24:34 +08004805 </intent-filter>
timhypengc3bd8012020-09-02 15:54:18 +08004806 </receiver>
4807
Jiashen Wang610060c82020-07-12 20:44:47 -07004808 <receiver
4809 android:name=".sim.receivers.SimSlotChangeReceiver"
4810 android:exported="true">
4811 <intent-filter>
4812 <action android:name="android.telephony.action.SIM_SLOT_STATUS_CHANGED" />
4813 </intent-filter>
4814 </receiver>
4815
Bonian Chen3ac629f2022-12-14 04:18:20 +00004816 <service android:name=".sim.receivers.SimSlotChangeService"
4817 android:permission="android.permission.BIND_JOB_SERVICE" />
4818
Jiashen Wang7629de02020-11-24 19:03:33 -08004819 <receiver
4820 android:name=".sim.receivers.SimCompleteBootReceiver"
4821 android:exported="true">
4822 <intent-filter>
4823 <action android:name="android.intent.action.BOOT_COMPLETED"/>
4824 </intent-filter>
4825 </receiver>
4826
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004827 <activity
4828 android:name=".sim.ChooseSimActivity"
4829 android:theme="@style/GlifV3Theme.DayNight.NoActionBar"
4830 android:launchMode="singleInstance"
Bonian Chenf81eaeb2022-03-18 16:52:40 +08004831 android:excludeFromRecents="true"
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004832 android:exported="false"/>
4833
4834 <activity
4835 android:name=".sim.SwitchToEsimConfirmDialogActivity"
4836 android:exported="false"
4837 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
4838 android:launchMode="singleInstance"
SongFerngWang4780be42021-12-21 05:39:09 +08004839 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004840
4841 <activity
4842 android:name=".sim.DsdsDialogActivity"
4843 android:exported="false"
4844 android:permission="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"
4845 android:launchMode="singleInstance"
SongFerngWang4780be42021-12-21 05:39:09 +08004846 android:theme="@style/Theme.AlertDialog.SimConfirmDialog"/>
Jiashen Wangb54d25e2021-01-18 19:14:00 -08004847
Jiashen Wang7629de02020-11-24 19:03:33 -08004848 <service android:name=".sim.SimNotificationService"
4849 android:permission="android.permission.BIND_JOB_SERVICE" />
4850
calvinpane077e392021-01-25 10:07:26 +08004851 <activity android:name=".sim.smartForwarding.SmartForwardingActivity"
calvinpane077e392021-01-25 10:07:26 +08004852 android:exported="true"
4853 android:launchMode="singleTask">
4854 </activity>
4855
Mill Chen00231002021-03-11 01:18:13 +08004856 <activity android:name="Settings$FactoryResetActivity"
Edgar Wangc8bbf832023-05-24 19:36:53 +08004857 android:permission="android.permission.MASTER_CLEAR"
Mill Chen00231002021-03-11 01:18:13 +08004858 android:label="@string/main_clear_title"
4859 android:exported="true"
4860 android:theme="@style/SudThemeGlif.Light">
4861 <intent-filter>
4862 <action android:name="com.android.settings.action.FACTORY_RESET"/>
4863 <category android:name="android.intent.category.DEFAULT"/>
4864 </intent-filter>
4865 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4866 android:value="com.android.settings.MainClear"/>
Jason Chiu646a31e2021-11-10 11:56:00 +08004867 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4868 android:value="@string/menu_key_system"/>
Mill Chen00231002021-03-11 01:18:13 +08004869 </activity>
4870
4871 <activity android:name="Settings$FactoryResetConfirmActivity"
4872 android:label="@string/main_clear_confirm_title"
4873 android:exported="false"
4874 android:theme="@style/SudThemeGlif.Light">
4875 </activity>
4876
Jason Changd1cf05c2021-10-21 16:12:15 +08004877 <activity
4878 android:name="Settings$OneHandedSettingsActivity"
4879 android:label="@string/one_handed_title"
4880 android:exported="true"
4881 android:enabled="true">
4882 <intent-filter android:priority="1">
Jason Changcffaef12021-11-20 23:21:28 +08004883 <action android:name="android.settings.action.ONE_HANDED_SETTINGS" />
4884 <category android:name="android.intent.category.DEFAULT" />
4885 </intent-filter>
4886 <intent-filter android:priority="1">
Jason Changd1cf05c2021-10-21 16:12:15 +08004887 <action android:name="android.intent.action.MAIN" />
4888 <category android:name="com.android.settings.SHORTCUT" />
4889 </intent-filter>
4890 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4891 android:value="com.android.settings.gestures.OneHandedSettings"/>
4892 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED"
4893 android:value="true" />
4894 </activity>
4895
Marie Matheson125a84f2022-02-02 19:14:00 +00004896 <receiver android:name=".safetycenter.SafetySourceBroadcastReceiver"
4897 android:exported="true">
4898 <intent-filter>
4899 <action android:name="android.safetycenter.action.REFRESH_SAFETY_SOURCES"/>
Marie Matheson1106faf2022-02-14 20:33:57 +00004900 <action android:name="android.intent.action.BOOT_COMPLETED"/>
Marie Matheson125a84f2022-02-02 19:14:00 +00004901 </intent-filter>
4902 </receiver>
4903
Zoey Chen4b345982022-05-12 11:27:40 +08004904 <activity
4905 android:name="com.android.settings.bluetooth.QrCodeScanModeActivity"
4906 android:permission="android.permission.BLUETOOTH_CONNECT"
4907 android:exported="true">
4908 <intent-filter>
4909 <action android:name="android.settings.BLUETOOTH_LE_AUDIO_QR_CODE_SCANNER"/>
4910 <category android:name="android.intent.category.DEFAULT"/>
4911 </intent-filter>
4912 </activity>
4913
Chaohui Wangf67f2ad2022-11-21 17:44:31 +08004914 <activity
4915 android:name=".spa.SpaActivity"
4916 android:configChanges="orientation|screenLayout|screenSize|smallestScreenSize"
Viesturs Zarins8e33f2e2023-06-01 17:48:36 +02004917 android:knownActivityEmbeddingCerts="@array/config_known_host_certs"
Chaohui Wangf67f2ad2022-11-21 17:44:31 +08004918 android:exported="false" />
Chaohui Wangd22619e2022-09-08 16:06:09 +08004919 <activity android:name=".spa.SpaBridgeActivity" android:exported="false"/>
Chaohui Wanga9c624b2022-12-23 16:48:40 +08004920 <activity android:name=".spa.SpaAppBridgeActivity" android:exported="false"/>
Chaohui Wangd22619e2022-09-08 16:06:09 +08004921
Joshua McCloskeyb7f0d7a2023-04-13 19:58:26 +00004922 <activity android:name=".Settings$FingerprintSettingsActivityV2"
4923 android:label="@string/security_settings_fingerprint_preference_title"
4924 android:exported="false"
4925 android:icon="@drawable/ic_fingerprint_header">
4926 <intent-filter>
4927 <action android:name="android.settings.FINGERPRINT_SETTINGS_V2" />
4928 <category android:name="android.intent.category.DEFAULT" />
4929 </intent-filter>
4930 <meta-data android:name="com.android.settings.FRAGMENT_CLASS"
4931 android:value="com.android.settings.biometrics.fingerprint2.ui.fragment.FingerprintSettingsV2Fragment" />
4932 <meta-data android:name="com.android.settings.HIGHLIGHT_MENU_KEY"
4933 android:value="@string/menu_key_security"/>
4934 </activity>
4935
Chaohui Wangd22619e2022-09-08 16:06:09 +08004936 <activity-alias android:name="UsageStatsActivity"
4937 android:exported="true"
4938 android:label="@string/testing_usage_stats"
4939 android:targetActivity=".spa.SpaBridgeActivity">
4940 <intent-filter>
4941 <action android:name="android.intent.action.MAIN" />
4942 <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
4943 </intent-filter>
4944 <meta-data android:name="com.android.settings.spa.DESTINATION"
4945 android:value="UsageStats"/>
4946 </activity-alias>
Chaohui Wang805f9032022-08-16 16:36:40 +08004947
Tsung-Mao Fangfa7394a2022-10-04 15:51:45 +08004948 <!-- [b/197780098] Disable eager initialization of Jetpack libraries. -->
4949 <provider
4950 android:name="androidx.startup.InitializationProvider"
4951 android:authorities="${applicationId}.androidx-startup"
4952 tools:node="remove" />
4953
Dan Sandler3bd52dd2016-03-24 10:24:27 -07004954 <!-- This is the longest AndroidManifest.xml ever. -->
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08004955 </application>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08004956</manifest>