The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Fyodor Kupolov | 19280af | 2015-01-27 11:59:00 -0800 | [diff] [blame] | 2 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 3 | package="com.android.settings" |
Ben Komalo | b08172e | 2011-09-19 14:27:13 -0700 | [diff] [blame] | 4 | coreApp="true" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 5 | android:sharedUserId="android.uid.system"> |
| 6 | |
Jeff Hamilton | c60fb58 | 2010-02-11 16:25:53 -0600 | [diff] [blame] | 7 | <original-package android:name="com.android.settings" /> |
| 8 | |
Sundeep Ghuman | c164ad0 | 2016-12-26 17:37:30 -0800 | [diff] [blame] | 9 | <uses-permission android:name="android.permission.REQUEST_NETWORK_SCORES" /> |
Jeff Sharkey | 5738266 | 2015-07-30 16:55:42 -0700 | [diff] [blame] | 10 | <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" /> |
Zim | 3d437eb | 2020-01-24 15:29:00 +0000 | [diff] [blame] | 11 | <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> |
Vasu Nori | 2180974 | 2011-01-25 13:39:16 -0800 | [diff] [blame] | 12 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Amith Yamasani | 48fa857 | 2012-04-17 17:12:01 -0700 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 14 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 15 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Mike Lockwood | cd03f53 | 2009-09-15 14:39:47 -0400 | [diff] [blame] | 16 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 17 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> |
| 18 | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
| 19 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 20 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 21 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Matthew Xie | 500f294 | 2013-09-24 00:55:42 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" /> |
Nick Pelly | f2917ac | 2010-10-20 16:39:44 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.NFC" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 25 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
| 26 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 27 | <uses-permission android:name="android.permission.MASTER_CLEAR" /> |
| 28 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 29 | <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" /> |
| 30 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 31 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
Chia-chi Yeh | 413b171 | 2011-07-07 12:49:18 -0700 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Roshan Pius | f1f209f | 2017-12-13 16:20:18 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.LOCAL_MAC_ADDRESS" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Irfan Sheriff | 0f41b49 | 2013-03-29 11:15:07 -0700 | [diff] [blame] | 35 | <uses-permission android:name="com.android.certinstaller.INSTALL_AS_USER" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
Jeremy Klein | 78d182f | 2015-12-28 15:39:39 -0800 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.TETHER_PRIVILEGED" /> |
Dianne Hackborn | 027cdd2 | 2018-01-19 17:57:28 -0800 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.INTERNET" /> |
| 40 | <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" /> |
Yoshiaki Naka | 81dbc00 | 2019-09-13 21:41:01 +0900 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
zoey chen | 4a7ad4d | 2019-12-17 18:13:39 +0800 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 44 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
Hall Liu | a6840ca | 2018-11-27 17:00:50 -0800 | [diff] [blame] | 45 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 46 | <uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/> |
| 47 | <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/> |
| 48 | <uses-permission android:name="android.permission.READ_USER_DICTIONARY"/> |
| 49 | <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY"/> |
Dianne Hackborn | 517ea9f | 2010-01-04 18:47:54 -0800 | [diff] [blame] | 50 | <uses-permission android:name="android.permission.FORCE_STOP_PACKAGES"/> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 51 | <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"/> |
| 52 | <uses-permission android:name="android.permission.BATTERY_STATS"/> |
| 53 | <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /> |
| 54 | <uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" /> |
Suchi Amalapurapu | ad14827 | 2010-02-19 14:30:01 -0800 | [diff] [blame] | 55 | <uses-permission android:name="android.permission.MOVE_PACKAGE" /> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 56 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 57 | <uses-permission android:name="android.permission.BACKUP" /> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 58 | <uses-permission android:name="android.permission.READ_SYNC_STATS" /> |
| 59 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 60 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
Stanislav Zholnin | 646dda9 | 2019-02-01 13:00:37 +0000 | [diff] [blame] | 61 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 62 | <uses-permission android:name="android.permission.STATUS_BAR" /> |
Mike Lockwood | 9d6d92b | 2011-02-27 09:05:10 -0800 | [diff] [blame] | 63 | <uses-permission android:name="android.permission.MANAGE_USB" /> |
Kenny Root | e7bbf8f | 2018-01-23 21:53:53 +0900 | [diff] [blame] | 64 | <uses-permission android:name="android.permission.MANAGE_DEBUGGING" /> |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 65 | <uses-permission android:name="android.permission.SET_POINTER_SPEED" /> |
Jeff Brown | 4397f40 | 2012-04-09 13:24:34 -0700 | [diff] [blame] | 66 | <uses-permission android:name="android.permission.SET_KEYBOARD_LAYOUT" /> |
Dianne Hackborn | 271c8b0 | 2012-08-20 17:24:39 -0700 | [diff] [blame] | 67 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 68 | <uses-permission android:name="android.permission.COPY_PROTECTED_DATA" /> |
| 69 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Nicolas Prevot | 189294e | 2015-04-22 16:26:45 +0100 | [diff] [blame] | 70 | <uses-permission android:name="android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS" /> |
Amith Yamasani | 32dccbc | 2012-09-13 18:06:49 -0700 | [diff] [blame] | 71 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
Jeff Brown | 9e143f5 | 2012-09-19 20:46:07 -0700 | [diff] [blame] | 72 | <uses-permission android:name="android.permission.CONFIGURE_WIFI_DISPLAY" /> |
Michael Wright | aacf55a | 2016-07-13 22:11:09 -0700 | [diff] [blame] | 73 | <uses-permission android:name="android.permission.CONFIGURE_DISPLAY_COLOR_MODE" /> |
Christine Franks | bce91d9 | 2018-07-03 14:44:08 -0700 | [diff] [blame] | 74 | <uses-permission android:name="android.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS" /> |
Neil Fuller | 0770b3f | 2019-11-21 16:09:00 +0000 | [diff] [blame] | 75 | <uses-permission android:name="android.permission.SUGGEST_MANUAL_TIME_AND_ZONE" /> |
Daniel Sandler | 328e2d2 | 2013-01-17 13:14:02 -0500 | [diff] [blame] | 76 | <uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" /> |
Brian Carlstrom | f32ba13 | 2013-06-28 13:18:41 -0700 | [diff] [blame] | 77 | <uses-permission android:name="android.permission.REBOOT" /> |
PauloftheWest | 63f7bc8 | 2014-10-30 08:01:30 -0700 | [diff] [blame] | 78 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Amith Yamasani | 9247265 | 2013-07-19 12:37:42 -0700 | [diff] [blame] | 79 | <uses-permission android:name="android.permission.MANAGE_DEVICE_ADMINS" /> |
Fabrice Di Meglio | 485b1b8 | 2014-03-20 12:24:57 -0700 | [diff] [blame] | 80 | <uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES" /> |
Fan Zhang | d040ecd | 2017-08-17 16:13:20 -0700 | [diff] [blame] | 81 | <uses-permission android:name="android.permission.BIND_SETTINGS_SUGGESTIONS_SERVICE" /> |
Andres Morales | ce249fe | 2014-07-07 16:58:16 -0700 | [diff] [blame] | 82 | <uses-permission android:name="android.permission.OEM_UNLOCK_STATE" /> |
Andrew Scull | c23357e | 2017-04-18 09:40:11 +0100 | [diff] [blame] | 83 | <uses-permission android:name="android.permission.MANAGE_USER_OEM_UNLOCK_STATE" /> |
Sky Faber | 2d657e3 | 2014-09-22 16:43:04 -0700 | [diff] [blame] | 84 | <uses-permission android:name="android.permission.OVERRIDE_WIFI_CONFIG" /> |
Jim Miller | 94d4bd9 | 2015-02-19 21:04:57 -0800 | [diff] [blame] | 85 | <uses-permission android:name="android.permission.MANAGE_FINGERPRINT" /> |
Kevin Chyn | b3ee231 | 2018-10-04 15:01:43 -0700 | [diff] [blame] | 86 | <uses-permission android:name="android.permission.USE_BIOMETRIC" /> |
| 87 | <uses-permission android:name="android.permission.USE_BIOMETRIC_INTERNAL" /> |
Jorim Jaggi | 4a2423b | 2015-04-24 10:19:48 -0700 | [diff] [blame] | 88 | <uses-permission android:name="android.permission.USER_ACTIVITY" /> |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 89 | <uses-permission android:name="android.permission.CHANGE_APP_IDLE_STATE" /> |
Fyodor Kupolov | 0938a63 | 2015-07-27 12:24:59 -0700 | [diff] [blame] | 90 | <uses-permission android:name="android.permission.PEERS_MAC_ADDRESS"/> |
Julia Reynolds | f02aa0c | 2015-09-28 08:57:03 -0400 | [diff] [blame] | 91 | <uses-permission android:name="android.permission.MANAGE_NOTIFICATIONS"/> |
Daniel Nishi | b84304d | 2016-04-11 14:08:44 -0700 | [diff] [blame] | 92 | <uses-permission android:name="android.permission.DELETE_PACKAGES"/> |
Philip P. Moltmann | dd7441b | 2017-09-05 12:42:04 -0700 | [diff] [blame] | 93 | <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" /> |
Phil Weaver | 2e2dbfe | 2017-05-30 10:41:52 -0700 | [diff] [blame] | 94 | <uses-permission android:name="android.permission.MANAGE_APP_OPS_RESTRICTIONS"/> |
Dianne Hackborn | da3c046 | 2018-03-07 16:42:39 -0800 | [diff] [blame] | 95 | <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" /> |
Phil Weaver | 633c9be | 2017-07-05 10:02:38 -0700 | [diff] [blame] | 96 | <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/> |
Philip P. Moltmann | 5929b13 | 2017-06-19 10:55:31 -0700 | [diff] [blame] | 97 | <uses-permission android:name="android.permission.READ_PRINT_SERVICES" /> |
Roshan Pius | 37a46a1 | 2017-07-24 15:05:36 -0700 | [diff] [blame] | 98 | <uses-permission android:name="android.permission.NETWORK_SETTINGS" /> |
Alexandru-Andrei Rotaru | aeb3e44 | 2017-08-07 12:21:31 +0100 | [diff] [blame] | 99 | <uses-permission android:name="android.permission.TEST_BLACKLISTED_PASSWORD" /> |
Jeff Sharkey | d940336 | 2018-01-05 17:14:37 -0700 | [diff] [blame] | 100 | <uses-permission android:name="android.permission.USE_RESERVED_DISK" /> |
Felipe Leme | a5bbad4 | 2018-02-14 13:15:19 -0800 | [diff] [blame] | 101 | <uses-permission android:name="android.permission.MANAGE_SCOPED_ACCESS_DIRECTORY_PERMISSIONS" /> |
Kevin Chyn | 22b4edd | 2018-07-30 19:20:01 -0700 | [diff] [blame] | 102 | <uses-permission android:name="android.permission.CAMERA" /> |
jackqdyulei | f25c9b0 | 2019-02-27 10:05:56 -0800 | [diff] [blame] | 103 | <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" /> |
PO HUNG CHEN | afc513e | 2019-12-10 04:11:21 +0000 | [diff] [blame] | 104 | <uses-permission android:name="android.permission.INSTALL_DYNAMIC_SYSTEM" /> |
Jack Yu | c4da22a | 2020-01-30 00:04:06 -0800 | [diff] [blame] | 105 | <uses-permission android:name="android.permission.BIND_CELL_BROADCAST_SERVICE" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 106 | |
Dianne Hackborn | a54672f | 2009-06-24 12:45:09 -0700 | [diff] [blame] | 107 | <application android:label="@string/settings_label" |
Hyunyoung Song | 1f093dd | 2017-02-14 10:40:58 -0800 | [diff] [blame] | 108 | android:icon="@drawable/ic_launcher_settings" |
Amith Yamasani | 56f51a8 | 2013-08-05 10:07:23 -0700 | [diff] [blame] | 109 | android:theme="@style/Theme.Settings" |
Fabrice Di Meglio | 79d8e80 | 2012-07-19 19:25:50 -0700 | [diff] [blame] | 110 | android:hardwareAccelerated="true" |
Amith Yamasani | 233592b | 2013-03-01 17:05:23 -0800 | [diff] [blame] | 111 | android:requiredForAllUsers="true" |
Fabrice Di Meglio | 6644556 | 2014-06-30 13:11:53 -0700 | [diff] [blame] | 112 | android:supportsRtl="true" |
Sunny Goyal | ae788a1 | 2019-04-24 17:11:24 -0700 | [diff] [blame] | 113 | android:backupAgent="com.android.settings.backup.SettingsBackupHelper" |
Jeff Sharkey | 3bd73ed | 2015-11-18 10:20:18 -0700 | [diff] [blame] | 114 | android:usesCleartextTraffic="true" |
Jeff Sharkey | a806b7a | 2016-03-17 11:04:55 -0600 | [diff] [blame] | 115 | android:defaultToDeviceProtectedStorage="true" |
Jason Monk | 2021012 | 2018-04-03 18:36:42 -0400 | [diff] [blame] | 116 | android:directBootAware="true" |
Aurimas Liutikas | e0069d3 | 2018-04-17 11:22:43 -0700 | [diff] [blame] | 117 | android:appComponentFactory="androidx.core.app.CoreComponentFactory"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 118 | |
Paul Duffin | 4862614 | 2017-07-24 15:46:40 +0100 | [diff] [blame] | 119 | <uses-library android:name="org.apache.http.legacy" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 120 | <!-- Settings --> |
| 121 | |
Fan Zhang | 44be913 | 2018-09-07 12:56:53 -0700 | [diff] [blame] | 122 | <activity android:name=".homepage.SettingsHomepageActivity" |
Raff Tsai | 082f8ee | 2018-06-29 06:11:39 +0000 | [diff] [blame] | 123 | android:label="@string/settings_label_launcher" |
| 124 | android:theme="@style/Theme.Settings.Home" |
Sunny Shao | 0b0e6fc | 2019-06-18 13:32:05 +0800 | [diff] [blame] | 125 | android:taskAffinity="com.android.settings.root" |
Raff Tsai | 082f8ee | 2018-06-29 06:11:39 +0000 | [diff] [blame] | 126 | android:launchMode="singleTask"> |
Fan Zhang | 0c7c59f | 2018-10-26 13:40:38 -0700 | [diff] [blame] | 127 | <intent-filter android:priority="1"> |
| 128 | <action android:name="android.settings.SETTINGS" /> |
| 129 | <category android:name="android.intent.category.DEFAULT" /> |
| 130 | </intent-filter> |
| 131 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 132 | android:value="true" /> |
Raff Tsai | 082f8ee | 2018-06-29 06:11:39 +0000 | [diff] [blame] | 133 | </activity> |
| 134 | |
jackqdyulei | 2aae67a | 2018-10-29 13:46:33 -0700 | [diff] [blame] | 135 | <activity android:name=".network.telephony.MobileNetworkActivity" |
jackqdyulei | 106ae1d | 2018-10-05 10:04:19 -0700 | [diff] [blame] | 136 | android:label="@string/network_settings_title" |
| 137 | android:theme="@style/Theme.Settings.Home" |
| 138 | android:launchMode="singleTask"> |
jackqdyulei | b5ce3cd | 2018-12-19 14:52:42 -0800 | [diff] [blame] | 139 | <intent-filter android:priority="1"> |
| 140 | <action android:name="android.settings.NETWORK_OPERATOR_SETTINGS" /> |
| 141 | <action android:name="android.settings.DATA_ROAMING_SETTINGS" /> |
Malcolm Chen | 7dd82f9 | 2019-04-18 19:45:04 -0700 | [diff] [blame] | 142 | <action android:name="android.settings.MMS_MESSAGE_SETTING" /> |
jackqdyulei | b5ce3cd | 2018-12-19 14:52:42 -0800 | [diff] [blame] | 143 | <category android:name="android.intent.category.DEFAULT" /> |
| 144 | </intent-filter> |
jackqdyulei | 106ae1d | 2018-10-05 10:04:19 -0700 | [diff] [blame] | 145 | </activity> |
| 146 | |
Alexandra Gherghina | 05dec7f | 2014-09-05 11:42:51 +0100 | [diff] [blame] | 147 | <!-- Alias for launcher activity only, as this belongs to each profile. --> |
| 148 | <activity-alias android:name="Settings" |
Alexandra Gherghina | 05dec7f | 2014-09-05 11:42:51 +0100 | [diff] [blame] | 149 | android:label="@string/settings_label_launcher" |
Sunny Shao | 0b0e6fc | 2019-06-18 13:32:05 +0800 | [diff] [blame] | 150 | android:taskAffinity="com.android.settings.root" |
Alexandra Gherghina | 05dec7f | 2014-09-05 11:42:51 +0100 | [diff] [blame] | 151 | android:launchMode="singleTask" |
Fan Zhang | 44be913 | 2018-09-07 12:56:53 -0700 | [diff] [blame] | 152 | android:targetActivity=".homepage.SettingsHomepageActivity"> |
Alexandra Gherghina | 05dec7f | 2014-09-05 11:42:51 +0100 | [diff] [blame] | 153 | <intent-filter> |
| 154 | <action android:name="android.intent.action.MAIN" /> |
| 155 | <category android:name="android.intent.category.DEFAULT" /> |
| 156 | <category android:name="android.intent.category.LAUNCHER" /> |
| 157 | </intent-filter> |
Sunny Goyal | 5f179fc | 2016-06-15 12:36:50 -0700 | [diff] [blame] | 158 | <meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/> |
Alexandra Gherghina | 05dec7f | 2014-09-05 11:42:51 +0100 | [diff] [blame] | 159 | </activity-alias> |
| 160 | |
Matthew Fritze | 626a21b | 2016-08-17 11:52:39 -0700 | [diff] [blame] | 161 | <receiver android:name=".SettingsInitialize"> |
Alexandra Gherghina | 89265a3 | 2014-07-17 20:29:34 +0100 | [diff] [blame] | 162 | <intent-filter> |
Alexandra Gherghina | f2e39f2 | 2014-08-18 13:16:17 +0100 | [diff] [blame] | 163 | <action android:name="android.intent.action.USER_INITIALIZE"/> |
Alexandra Gherghina | 5171224 | 2014-09-05 16:32:14 +0100 | [diff] [blame] | 164 | <action android:name="android.intent.action.PRE_BOOT_COMPLETED"/> |
Alexandra Gherghina | 89265a3 | 2014-07-17 20:29:34 +0100 | [diff] [blame] | 165 | </intent-filter> |
| 166 | </receiver> |
| 167 | |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 168 | <activity android:name=".SubSettings"/> |
Dianne Hackborn | b725818 | 2011-03-15 16:23:55 -0700 | [diff] [blame] | 169 | |
Fan Zhang | f1f0f8b | 2018-06-22 10:40:07 -0700 | [diff] [blame] | 170 | <activity android:name=".Settings$CreateShortcutActivity" |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 171 | android:label="@string/settings_shortcut"> |
Dianne Hackborn | a54672f | 2009-06-24 12:45:09 -0700 | [diff] [blame] | 172 | <intent-filter> |
Fan Zhang | f1f0f8b | 2018-06-22 10:40:07 -0700 | [diff] [blame] | 173 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 174 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | a54672f | 2009-06-24 12:45:09 -0700 | [diff] [blame] | 175 | </intent-filter> |
Fan Zhang | f1f0f8b | 2018-06-22 10:40:07 -0700 | [diff] [blame] | 176 | <meta-data |
| 177 | android:name="com.android.settings.FRAGMENT_CLASS" |
| 178 | android:value="com.android.settings.shortcut.CreateShortcut" /> |
Dianne Hackborn | a54672f | 2009-06-24 12:45:09 -0700 | [diff] [blame] | 179 | </activity> |
| 180 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 181 | <!-- Wireless Controls --> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 182 | <activity |
| 183 | android:name=".Settings$NetworkDashboardActivity" |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 184 | android:label="@string/network_dashboard_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 185 | android:icon="@drawable/ic_homepage_network"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 186 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 187 | <action android:name="android.settings.WIRELESS_SETTINGS" /> |
| 188 | <action android:name="android.settings.AIRPLANE_MODE_SETTINGS" /> |
Andrew Sapperstein | c65ccd2 | 2019-04-25 10:31:37 -0700 | [diff] [blame] | 189 | <action android:name="com.android.settings.sim.SIM_SUB_INFO_SETTINGS" /> |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 190 | <category android:name="android.intent.category.DEFAULT" /> |
| 191 | </intent-filter> |
| 192 | <intent-filter> |
| 193 | <action android:name="android.intent.action.MAIN" /> |
| 194 | <category android:name="android.intent.category.DEFAULT" /> |
| 195 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 196 | </intent-filter> |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 197 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 198 | android:value="com.android.settings.network.NetworkDashboardFragment"/> |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 199 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 200 | android:value="true" /> |
| 201 | </activity> |
| 202 | |
Antony Sargent | 94d9790 | 2019-03-26 09:50:22 -0700 | [diff] [blame] | 203 | <activity android:name=".Settings$MobileNetworkListActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 204 | android:label="@string/network_settings_title"> |
Antony Sargent | 94d9790 | 2019-03-26 09:50:22 -0700 | [diff] [blame] | 205 | <intent-filter android:priority="1"> |
| 206 | <action android:name="android.settings.MOBILE_NETWORK_LIST" /> |
| 207 | <category android:name="android.intent.category.DEFAULT" /> |
| 208 | </intent-filter> |
| 209 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 210 | android:value="com.android.settings.network.MobileNetworkListFragment"/> |
| 211 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 212 | android:value="true" /> |
| 213 | </activity> |
| 214 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 215 | <activity |
| 216 | android:name=".Settings$ConnectedDeviceDashboardActivity" |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 217 | android:label="@string/connected_devices_dashboard_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 218 | android:icon="@drawable/ic_devices_other"> |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 219 | <intent-filter android:priority="1"> |
jackqdyulei | 6dd7f2e | 2018-02-07 17:49:09 -0800 | [diff] [blame] | 220 | <action android:name="android.settings.BLUETOOTH_SETTINGS" /> |
| 221 | <category android:name="android.intent.category.DEFAULT" /> |
| 222 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 223 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Doris Ling | 2620822 | 2017-03-03 11:28:05 -0800 | [diff] [blame] | 224 | android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment"/> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 225 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 226 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 227 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 228 | |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 229 | <activity android:name="AirplaneModeVoiceActivity" |
| 230 | android:label="@string/wireless_networks_settings_title" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 231 | android:theme="@*android:style/Theme.DeviceDefault.Light.Voice" |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 232 | android:exported="true"> |
| 233 | <intent-filter> |
| 234 | <action android:name="android.settings.VOICE_CONTROL_AIRPLANE_MODE" /> |
| 235 | <category android:name="android.intent.category.DEFAULT" /> |
| 236 | <category android:name="android.intent.category.VOICE" /> |
| 237 | </intent-filter> |
| 238 | </activity> |
| 239 | |
Fan Zhang | 25f29bf | 2017-10-24 09:27:02 -0700 | [diff] [blame] | 240 | <activity android:name=".search.SearchResultTrampoline" |
| 241 | android:theme="@android:style/Theme.NoDisplay" |
| 242 | android:excludeFromRecents="true" |
| 243 | android:exported="true"> |
Fan Zhang | 8068fda | 2017-11-09 16:37:01 -0800 | [diff] [blame] | 244 | <intent-filter> |
| 245 | <action android:name="com.android.settings.SEARCH_RESULT_TRAMPOLINE" /> |
| 246 | <category android:name="android.intent.category.DEFAULT" /> |
| 247 | </intent-filter> |
Fan Zhang | 25f29bf | 2017-10-24 09:27:02 -0700 | [diff] [blame] | 248 | </activity> |
| 249 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 250 | <activity |
| 251 | android:name="Settings$WifiSettingsActivity" |
| 252 | android:label="@string/wifi_settings" |
| 253 | android:icon="@drawable/ic_settings_wireless" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 254 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 255 | <intent-filter android:priority="1"> |
| 256 | <action android:name="android.settings.WIFI_SETTINGS" /> |
| 257 | <category android:name="android.intent.category.DEFAULT" /> |
| 258 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 259 | <intent-filter android:priority="1"> |
Chia-chi Yeh | 48090d4 | 2010-01-25 15:41:42 +0800 | [diff] [blame] | 260 | <action android:name="android.intent.action.MAIN" /> |
Chia-chi Yeh | 48090d4 | 2010-01-25 15:41:42 +0800 | [diff] [blame] | 261 | <category android:name="com.android.settings.SHORTCUT" /> |
| 262 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 263 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 264 | android:value="com.android.settings.wifi.WifiSettings" /> |
Zoltan Szatmary-Ban | e03d886 | 2015-04-30 14:35:54 +0100 | [diff] [blame] | 265 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 266 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 267 | </activity> |
Chia-chi Yeh | 48090d4 | 2010-01-25 15:41:42 +0800 | [diff] [blame] | 268 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 269 | <activity |
Quang Luong | b470e72 | 2019-06-24 14:47:55 -0700 | [diff] [blame] | 270 | android:name="Settings$WifiSettings2Activity" |
| 271 | android:label="@string/wifi_settings" |
| 272 | android:icon="@drawable/ic_settings_wireless" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 273 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Quang Luong | b470e72 | 2019-06-24 14:47:55 -0700 | [diff] [blame] | 274 | <intent-filter android:priority="1"> |
| 275 | <action android:name="android.settings.WIFI_SETTINGS2" /> |
| 276 | <category android:name="android.intent.category.DEFAULT" /> |
| 277 | </intent-filter> |
| 278 | <intent-filter android:priority="1"> |
| 279 | <action android:name="android.intent.action.MAIN" /> |
| 280 | <category android:name="com.android.settings.SHORTCUT" /> |
| 281 | </intent-filter> |
| 282 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 283 | android:value="com.android.settings.wifi.WifiSettings2" /> |
| 284 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 285 | android:value="true" /> |
| 286 | </activity> |
| 287 | |
| 288 | <activity |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 289 | android:name=".wifi.WifiPickerActivity"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 290 | <intent-filter android:priority="1"> |
| 291 | <action android:name="android.net.wifi.PICK_WIFI_NETWORK" /> |
| 292 | <category android:name="android.intent.category.DEFAULT" /> |
| 293 | </intent-filter> |
Zoltan Szatmary-Ban | e03d886 | 2015-04-30 14:35:54 +0100 | [diff] [blame] | 294 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 295 | android:value="true" /> |
Daisuke Miyakawa | 79c5fd9 | 2011-01-15 14:58:00 -0800 | [diff] [blame] | 296 | </activity> |
| 297 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 298 | <activity |
| 299 | android:name="Settings$ConfigureWifiSettingsActivity" |
| 300 | android:label="@string/wifi_configure_settings_preference_title" |
| 301 | android:icon="@drawable/ic_settings_wireless" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 302 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Amin Shaikh | 3aa547b | 2017-01-06 18:31:41 -0800 | [diff] [blame] | 303 | <intent-filter android:priority="1"> |
Stephen Chen | 91d13c1 | 2017-03-22 15:53:26 -0700 | [diff] [blame] | 304 | <action android:name="android.settings.WIFI_IP_SETTINGS" /> |
Amin Shaikh | 3aa547b | 2017-01-06 18:31:41 -0800 | [diff] [blame] | 305 | <category android:name="android.intent.category.DEFAULT" /> |
| 306 | </intent-filter> |
| 307 | <intent-filter> |
| 308 | <action android:name="android.intent.action.MAIN" /> |
| 309 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 310 | <category android:name="android.intent.category.DEFAULT" /> |
| 311 | </intent-filter> |
| 312 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 313 | android:value="com.android.settings.wifi.ConfigureWifiSettings" /> |
| 314 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 315 | android:value="true" /> |
| 316 | </activity> |
| 317 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 318 | <activity |
| 319 | android:name="Settings$SavedAccessPointsSettingsActivity" |
| 320 | android:label="@string/wifi_saved_access_points_label" |
| 321 | android:icon="@drawable/ic_settings_wireless" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 322 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 323 | <intent-filter android:priority="1"> |
Stephen Chen | 66d1a69 | 2016-11-14 16:24:08 -0800 | [diff] [blame] | 324 | <action android:name="android.settings.WIFI_SAVED_NETWORK_SETTINGS" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 325 | <category android:name="android.intent.category.DEFAULT" /> |
| 326 | </intent-filter> |
PauloftheWest | 7837b99 | 2014-06-24 07:42:27 -0700 | [diff] [blame] | 327 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 661049f | 2018-07-18 14:31:44 -0700 | [diff] [blame] | 328 | android:value="com.android.settings.wifi.savedaccesspoints.SavedAccessPointsWifiSettings" /> |
Zoltan Szatmary-Ban | e03d886 | 2015-04-30 14:35:54 +0100 | [diff] [blame] | 329 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 330 | android:value="true" /> |
PauloftheWest | 7837b99 | 2014-06-24 07:42:27 -0700 | [diff] [blame] | 331 | </activity> |
| 332 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 333 | <activity android:name=".Settings$WifiInfoActivity"> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 334 | <intent-filter> |
| 335 | <action android:name="android.intent.action.MAIN"/> |
| 336 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 337 | <category android:name="android.intent.category.DEFAULT" /> |
| 338 | </intent-filter> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 339 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 340 | android:value="com.android.settings.wifi.WifiInfo" /> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 341 | </activity> |
| 342 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 343 | <activity android:name=".wifi.WifiConfigInfo"> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 344 | <intent-filter> |
| 345 | <action android:name="android.intent.action.MAIN"/> |
| 346 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 347 | <category android:name="android.intent.category.DEFAULT" /> |
| 348 | </intent-filter> |
| 349 | </activity> |
| 350 | |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 351 | <activity android:name=".Settings$WifiAPITestActivity"> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 352 | <intent-filter> |
| 353 | <action android:name="android.intent.action.MAIN"/> |
| 354 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 355 | <category android:name="android.intent.category.DEFAULT" /> |
| 356 | </intent-filter> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 357 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 358 | android:value="com.android.settings.wifi.WifiAPITest" /> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 359 | </activity> |
| 360 | |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 361 | <activity android:name=".wifi.WifiStatusTest"> |
Irfan Sheriff | 2ff62e2 | 2009-12-03 10:53:50 -0800 | [diff] [blame] | 362 | <intent-filter> |
| 363 | <action android:name="android.intent.action.MAIN"/> |
| 364 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 365 | <category android:name="android.intent.category.DEFAULT" /> |
| 366 | </intent-filter> |
| 367 | </activity> |
| 368 | |
Lorenzo Colitti | 877b054 | 2015-04-03 17:31:19 +0900 | [diff] [blame] | 369 | <activity android:name=".wifi.WifiNoInternetDialog" |
| 370 | android:clearTaskOnLaunch="true" |
| 371 | android:excludeFromRecents="true" |
| 372 | android:exported="true" |
lucaslin | 7335c59 | 2019-03-20 11:41:21 +0800 | [diff] [blame] | 373 | android:permission="android.permission.NETWORK_STACK" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 374 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Lorenzo Colitti | 877b054 | 2015-04-03 17:31:19 +0900 | [diff] [blame] | 375 | <intent-filter> |
| 376 | <action android:name="android.net.conn.PROMPT_UNVALIDATED" /> |
| 377 | <category android:name="android.intent.category.DEFAULT" /> |
| 378 | </intent-filter> |
Lorenzo Colitti | 1449ecd | 2016-09-15 14:06:46 +0900 | [diff] [blame] | 379 | <intent-filter> |
| 380 | <action android:name="android.net.conn.PROMPT_LOST_VALIDATION" /> |
| 381 | <category android:name="android.intent.category.DEFAULT" /> |
| 382 | </intent-filter> |
Zoltan Szatmary-Ban | e03d886 | 2015-04-30 14:35:54 +0100 | [diff] [blame] | 383 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 384 | android:value="true" /> |
Lorenzo Colitti | 877b054 | 2015-04-03 17:31:19 +0900 | [diff] [blame] | 385 | </activity> |
| 386 | |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 387 | <activity android:name="Settings$ApnSettingsActivity" |
Jeff Sharkey | c2b43db | 2012-11-28 17:09:19 -0800 | [diff] [blame] | 388 | android:label="@string/apn_settings" |
smitha.x.smitha | 0a20f2e | 2013-04-23 14:45:09 +0530 | [diff] [blame] | 389 | android:launchMode="singleTask" |
Bonian Chen | cd1fd10 | 2020-02-10 02:38:25 +0800 | [diff] [blame] | 390 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 391 | <intent-filter android:priority="1"> |
| 392 | <action android:name="android.settings.APN_SETTINGS" /> |
| 393 | <category android:name="android.intent.category.DEFAULT" /> |
| 394 | </intent-filter> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 395 | <intent-filter> |
| 396 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 397 | <category android:name="android.intent.category.DEFAULT" /> |
| 398 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 399 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 400 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 401 | android:value="true" /> |
Fabrice Di Meglio | 61a1fec | 2014-08-13 16:22:38 -0700 | [diff] [blame] | 402 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Pengquan Meng | 7a1c93d | 2018-04-02 16:41:54 -0700 | [diff] [blame] | 403 | android:value="com.android.settings.network.ApnSettings" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 404 | </activity> |
| 405 | |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 406 | <!-- Keep compatibility with old shortcuts. --> |
| 407 | <activity-alias |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 408 | android:name="Settings$BluetoothSettingsActivity" |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 409 | android:label="@string/devices_title" |
| 410 | android:targetActivity=".Settings$ConnectedDeviceDashboardActivity" |
| 411 | android:exported="true"> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 412 | <intent-filter android:priority="10"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 413 | <action android:name="android.intent.action.MAIN" /> |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 414 | <category android:name="com.android.settings.SHORTCUT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 415 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 416 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 417 | android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" /> |
| 418 | </activity-alias> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 419 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 420 | <!-- Keep compatibility with old shortcuts. --> |
| 421 | <activity-alias android:name=".bluetooth.BluetoothSettings" |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 422 | android:label="@string/devices_title" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 423 | android:targetActivity="Settings$BluetoothSettingsActivity" |
| 424 | android:exported="true" |
| 425 | android:clearTaskOnLaunch="true"> |
| 426 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Lei Yu | dec7a71 | 2018-03-29 10:54:22 -0700 | [diff] [blame] | 427 | android:value="com.android.settings.connecteddevice.ConnectedDeviceDashboardFragment" /> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 428 | </activity-alias> |
| 429 | |
Kevin Chyn | 41acc69 | 2017-06-17 17:25:21 -0700 | [diff] [blame] | 430 | <activity android:name="Settings$AssistGestureSettingsActivity" |
| 431 | android:label="@string/assist_gesture_title" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 432 | android:icon="@drawable/ic_settings_gestures"> |
Kevin Chyn | 41acc69 | 2017-06-17 17:25:21 -0700 | [diff] [blame] | 433 | <intent-filter> |
| 434 | <action android:name="android.settings.ASSIST_GESTURE_SETTINGS" /> |
| 435 | <category android:name="android.intent.category.DEFAULT" /> |
| 436 | </intent-filter> |
| 437 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 438 | android:value="com.android.settings.gestures.AssistGestureSettings" /> |
| 439 | </activity> |
| 440 | |
Kevin Chyn | 7189997 | 2018-07-10 17:20:29 -0700 | [diff] [blame] | 441 | <activity android:name="Settings$FaceSettingsActivity" |
| 442 | android:label="@string/security_settings_face_preference_title" |
| 443 | android:icon="@drawable/ic_face_header"> |
| 444 | <intent-filter> |
| 445 | <action android:name="android.settings.FACE_SETTINGS" /> |
| 446 | <category android:name="android.intent.category.DEFAULT" /> |
| 447 | </intent-filter> |
| 448 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 449 | android:value="com.android.settings.biometrics.face.FaceSettings" /> |
| 450 | </activity> |
| 451 | |
Ilya Matyukhin | 8979f84 | 2019-04-28 15:10:02 -0700 | [diff] [blame] | 452 | <activity android:name="Settings$FingerprintSettingsActivity" |
| 453 | android:label="@string/security_settings_fingerprint_preference_title" |
| 454 | android:icon="@drawable/ic_fingerprint_header"> |
| 455 | <intent-filter> |
| 456 | <action android:name="android.settings.FINGERPRINT_SETTINGS" /> |
| 457 | <category android:name="android.intent.category.DEFAULT" /> |
| 458 | </intent-filter> |
| 459 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 460 | android:value="com.android.settings.biometrics.fingerprint.FingerprintSettings$FingerprintSettingsFragment" /> |
| 461 | </activity> |
| 462 | |
Jake Hamby | c090feb | 2010-12-07 16:27:21 -0800 | [diff] [blame] | 463 | <activity android:name=".bluetooth.DevicePickerActivity" |
Jake Hamby | c090feb | 2010-12-07 16:27:21 -0800 | [diff] [blame] | 464 | android:label="@string/device_picker" |
Hemant Gupta | 3483fc3 | 2018-02-01 19:20:29 +0530 | [diff] [blame] | 465 | android:configChanges="orientation|keyboardHidden|screenSize" |
Adam Powell | d8537a0 | 2012-07-18 19:02:39 -0700 | [diff] [blame] | 466 | android:clearTaskOnLaunch="true"> |
Jake Hamby | c090feb | 2010-12-07 16:27:21 -0800 | [diff] [blame] | 467 | <intent-filter> |
| 468 | <action android:name="android.bluetooth.devicepicker.action.LAUNCH" /> |
| 469 | <category android:name="android.intent.category.DEFAULT" /> |
| 470 | </intent-filter> |
| 471 | </activity> |
| 472 | |
Doris Ling | c692758 | 2018-01-18 15:04:59 -0800 | [diff] [blame] | 473 | <service android:name=".wifi.tether.TetherService" |
Jason Monk | 37832d6 | 2014-12-10 17:21:51 -0500 | [diff] [blame] | 474 | android:exported="true" |
Jeremy Klein | 78d182f | 2015-12-28 15:39:39 -0800 | [diff] [blame] | 475 | android:permission="android.permission.TETHER_PRIVILEGED" /> |
Jeremy Klein | 1cf002d | 2016-01-24 17:21:43 -0800 | [diff] [blame] | 476 | |
markchien | 8c713fc | 2019-02-14 11:11:31 +0800 | [diff] [blame] | 477 | <activity android:name=".network.TetherProvisioningActivity" |
Jeremy Klein | 1cf002d | 2016-01-24 17:21:43 -0800 | [diff] [blame] | 478 | android:exported="true" |
| 479 | android:permission="android.permission.TETHER_PRIVILEGED" |
Jeremy Klein | 7dbad8c | 2016-12-19 11:22:38 -0800 | [diff] [blame] | 480 | android:excludeFromRecents="true" |
Jeremy Klein | e3e7b95 | 2016-01-25 14:43:49 -0800 | [diff] [blame] | 481 | android:theme="@style/Theme.ProvisioningActivity"> |
Jeremy Klein | 1cf002d | 2016-01-24 17:21:43 -0800 | [diff] [blame] | 482 | <intent-filter android:priority="1"> |
| 483 | <action android:name="android.settings.TETHER_PROVISIONING_UI" /> |
| 484 | <category android:name="android.intent.category.DEFAULT" /> |
| 485 | </intent-filter> |
| 486 | </activity> |
| 487 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 488 | <activity |
| 489 | android:name="Settings$TetherSettingsActivity" |
| 490 | android:label="@string/tether_settings_title_all" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 491 | android:icon="@drawable/ic_settings_wireless"> |
Robert Greenwalt | 3901edb | 2010-01-26 10:22:37 -0800 | [diff] [blame] | 492 | <intent-filter> |
| 493 | <action android:name="android.intent.action.MAIN" /> |
paulhu | 08efd36 | 2020-02-07 14:42:08 +0800 | [diff] [blame] | 494 | <action android:name="android.settings.TETHER_SETTINGS" /> |
Robert Greenwalt | 3901edb | 2010-01-26 10:22:37 -0800 | [diff] [blame] | 495 | <category android:name="android.intent.category.DEFAULT" /> |
| 496 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 497 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 498 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 499 | android:value="com.android.settings.TetherSettings" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 500 | </activity> |
Robert Greenwalt | 3901edb | 2010-01-26 10:22:37 -0800 | [diff] [blame] | 501 | |
Salvador Martinez | bb33371 | 2018-06-19 10:27:30 -0700 | [diff] [blame] | 502 | <activity |
| 503 | android:name="Settings$WifiTetherSettingsActivity" |
| 504 | android:label="@string/wifi_hotspot_checkbox_text" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 505 | android:icon="@drawable/ic_wifi_tethering"> |
Salvador Martinez | bb33371 | 2018-06-19 10:27:30 -0700 | [diff] [blame] | 506 | <intent-filter> |
| 507 | <action android:name="com.android.settings.WIFI_TETHER_SETTINGS" /> |
| 508 | <category android:name="android.intent.category.DEFAULT" /> |
| 509 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 510 | <intent-filter android:priority="4"> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 511 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 512 | <category android:name="com.android.settings.SHORTCUT" /> |
| 513 | </intent-filter> |
Salvador Martinez | bb33371 | 2018-06-19 10:27:30 -0700 | [diff] [blame] | 514 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 515 | android:value="com.android.settings.wifi.tether.WifiTetherSettings" /> |
| 516 | </activity> |
| 517 | |
| 518 | |
Amith Yamasani | eb99f2f | 2010-12-15 14:12:43 -0800 | [diff] [blame] | 519 | <!-- Keep compatibility with old shortcuts. --> |
| 520 | <activity-alias android:name=".TetherSettings" |
| 521 | android:label="@string/tether_settings_title_all" |
| 522 | android:clearTaskOnLaunch="true" |
| 523 | android:exported="true" |
| 524 | android:targetActivity="Settings$TetherSettingsActivity"> |
| 525 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 526 | android:value="com.android.settings.TetherSettings" /> |
Amith Yamasani | eb99f2f | 2010-12-15 14:12:43 -0800 | [diff] [blame] | 527 | </activity-alias> |
| 528 | |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 529 | <activity android:name="Settings$WifiP2pSettingsActivity"> |
repo sync | b98463f | 2011-06-30 10:58:43 -0700 | [diff] [blame] | 530 | <intent-filter> |
| 531 | <action android:name="android.intent.action.MAIN" /> |
| 532 | <category android:name="android.intent.category.DEFAULT" /> |
| 533 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 534 | </intent-filter> |
| 535 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Irfan Sheriff | 9ef5357 | 2011-08-03 15:40:04 -0700 | [diff] [blame] | 536 | android:value="com.android.settings.wifi.p2p.WifiP2pSettings" /> |
repo sync | b98463f | 2011-06-30 10:58:43 -0700 | [diff] [blame] | 537 | </activity> |
| 538 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 539 | <activity |
| 540 | android:name="Settings$VpnSettingsActivity" |
| 541 | android:label="@string/vpn_settings_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 542 | android:icon="@drawable/ic_settings_wireless"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 543 | <intent-filter android:priority="1"> |
Robin Lee | d304194 | 2016-03-24 16:02:08 +0000 | [diff] [blame] | 544 | <action android:name="android.settings.VPN_SETTINGS" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 545 | <action android:name="android.net.vpn.SETTINGS" /> |
| 546 | <category android:name="android.intent.category.DEFAULT" /> |
| 547 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 548 | <intent-filter android:priority="5"> |
Hung-ying Tyan | 1617706 | 2009-06-10 22:52:44 +0800 | [diff] [blame] | 549 | <action android:name="android.intent.action.MAIN" /> |
Tobias Brunner | f7ed857 | 2010-06-28 13:10:26 +0200 | [diff] [blame] | 550 | <category android:name="com.android.settings.SHORTCUT" /> |
Hung-ying Tyan | 1617706 | 2009-06-10 22:52:44 +0800 | [diff] [blame] | 551 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 552 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Chia-chi Yeh | 7606a2f | 2011-07-02 17:45:23 -0700 | [diff] [blame] | 553 | android:value="com.android.settings.vpn2.VpnSettings" /> |
Zoltan Szatmary-Ban | 131b497 | 2014-08-18 13:48:15 +0100 | [diff] [blame] | 554 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 555 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 556 | </activity> |
Hung-ying Tyan | 1617706 | 2009-06-10 22:52:44 +0800 | [diff] [blame] | 557 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 558 | <activity |
Fabian Kozynski | d9aadd7 | 2019-04-11 12:25:09 -0400 | [diff] [blame] | 559 | android:name="Settings$DataSaverSummaryActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 560 | android:label="@string/data_saver_title"> |
Fabian Kozynski | d9aadd7 | 2019-04-11 12:25:09 -0400 | [diff] [blame] | 561 | <intent-filter android:priority="1"> |
| 562 | <action android:name="android.settings.DATA_SAVER_SETTINGS" /> |
| 563 | <category android:name="android.intent.category.DEFAULT" /> |
| 564 | </intent-filter> |
| 565 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 566 | android:value="com.android.settings.datausage.DataSaverSummary" /> |
| 567 | </activity> |
| 568 | |
| 569 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 570 | android:name="Settings$DateTimeSettingsActivity" |
| 571 | android:label="@string/date_and_time" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 572 | android:icon="@drawable/ic_settings_date_time"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 573 | <intent-filter android:priority="1"> |
| 574 | <action android:name="android.settings.DATE_SETTINGS" /> |
| 575 | <category android:name="android.intent.category.DEFAULT" /> |
| 576 | </intent-filter> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 577 | <intent-filter> |
| 578 | <action android:name="android.intent.action.MAIN" /> |
Daniel Sandler | f4d1c3e | 2012-10-01 16:45:10 -0400 | [diff] [blame] | 579 | <action android:name="android.intent.action.QUICK_CLOCK" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 580 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
Dianne Hackborn | 116d85e | 2009-06-26 18:20:23 -0700 | [diff] [blame] | 581 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 582 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 583 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Raff Tsai | 9e3a9fd | 2019-10-01 17:06:26 +0800 | [diff] [blame] | 584 | android:value="com.android.settings.datetime.DateTimeSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 585 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 586 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 587 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 588 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 589 | <activity |
| 590 | android:name="Settings$LocalePickerActivity" |
| 591 | android:label="@string/language_picker_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 592 | android:icon="@drawable/ic_settings_language"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 593 | <intent-filter android:priority="1"> |
| 594 | <action android:name="android.settings.LOCALE_SETTINGS" /> |
| 595 | <category android:name="android.intent.category.DEFAULT" /> |
| 596 | </intent-filter> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 597 | <intent-filter> |
| 598 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 599 | <category android:name="android.intent.category.DEFAULT" /> |
| 600 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 601 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 602 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Mihai Nita | d7d48fd | 2016-01-12 08:55:05 -0800 | [diff] [blame] | 603 | android:value="com.android.settings.localepicker.LocaleListEditor" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 604 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 605 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 606 | </activity> |
Michael Chan | 503c236 | 2009-12-08 22:18:23 -0800 | [diff] [blame] | 607 | |
tmfang | c0ed614 | 2018-07-13 11:11:26 +0800 | [diff] [blame] | 608 | <activity android:name=".localepicker.LocalePickerWithRegionActivity" |
| 609 | android:excludeFromRecents="true" |
| 610 | android:configChanges="orientation|keyboardHidden|screenSize" |
| 611 | android:exported="false"> |
| 612 | </activity> |
| 613 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 614 | <activity |
| 615 | android:name=".Settings$LanguageAndInputSettingsActivity" |
Doris Ling | 204ca74 | 2017-07-18 15:43:26 -0700 | [diff] [blame] | 616 | android:label="@string/language_settings" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 617 | android:icon="@drawable/ic_settings_language"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 618 | <intent-filter> |
| 619 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | e6dd1fa | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 620 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 621 | <category android:name="android.intent.category.DEFAULT" /> |
| 622 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 623 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 320d60f | 2017-03-20 17:32:32 -0700 | [diff] [blame] | 624 | android:value="com.android.settings.language.LanguageAndInputSettings"/> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 625 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
Fan Zhang | 320d60f | 2017-03-20 17:32:32 -0700 | [diff] [blame] | 626 | android:value="true"/> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 627 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 628 | |
Abodunrinwa Toki | 976bb3f | 2016-01-20 18:43:20 +0000 | [diff] [blame] | 629 | <activity android:name="Settings$AvailableVirtualKeyboardActivity" |
| 630 | android:label="@string/available_virtual_keyboard_category"> |
| 631 | <intent-filter android:priority="1"> |
| 632 | <action android:name="android.settings.INPUT_METHOD_SETTINGS" /> |
| 633 | <category android:name="android.intent.category.DEFAULT" /> |
| 634 | </intent-filter> |
| 635 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 636 | android:value="com.android.settings.inputmethod.AvailableVirtualKeyboardFragment" /> |
| 637 | </activity> |
| 638 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 639 | <activity |
| 640 | android:name="Settings$ManageAssistActivity" |
Yanting Yang | 87c7f56 | 2019-03-28 15:18:40 +0800 | [diff] [blame] | 641 | android:label="@string/assist_and_voice_input_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 642 | <intent-filter android:priority="1"> |
| 643 | <action android:name="android.settings.VOICE_INPUT_SETTINGS" /> |
| 644 | <category android:name="android.intent.category.DEFAULT" /> |
| 645 | </intent-filter> |
Dianne Hackborn | b51253c | 2014-08-12 15:08:04 -0700 | [diff] [blame] | 646 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | dfce62c | 2017-02-16 15:00:53 -0800 | [diff] [blame] | 647 | android:value="com.android.settings.applications.assist.ManageAssist" /> |
Dianne Hackborn | b51253c | 2014-08-12 15:08:04 -0700 | [diff] [blame] | 648 | </activity> |
| 649 | |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 650 | <activity android:name="Settings$KeyboardLayoutPickerActivity" |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 651 | android:label="@string/keyboard_layout_picker_title" |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 652 | android:clearTaskOnLaunch="true" |
| 653 | android:exported="true"> |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 654 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | aceee52 | 2016-11-04 14:12:15 -0700 | [diff] [blame] | 655 | android:value="com.android.settings.inputmethod.KeyboardLayoutPickerFragment" /> |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 656 | </activity> |
| 657 | |
| 658 | <activity android:name="Settings$PhysicalKeyboardActivity" |
Yorke Lee | d448522 | 2016-03-23 11:11:46 -0700 | [diff] [blame] | 659 | android:label="@string/physical_keyboard_title" |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 660 | android:clearTaskOnLaunch="true"> |
Yohei Yukawa | 7c4499d | 2016-01-27 19:18:52 -0800 | [diff] [blame] | 661 | <intent-filter android:priority="1"> |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 662 | <action android:name="android.settings.HARD_KEYBOARD_SETTINGS" /> |
Yohei Yukawa | 7c4499d | 2016-01-27 19:18:52 -0800 | [diff] [blame] | 663 | <category android:name="android.intent.category.DEFAULT" /> |
| 664 | </intent-filter> |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 665 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Abodunrinwa Toki | b28b2cc | 2016-03-22 16:29:38 +0000 | [diff] [blame] | 666 | android:value="com.android.settings.inputmethod.PhysicalKeyboardFragment" /> |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 667 | </activity> |
| 668 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 669 | <!-- Keep compatibility with old shortcuts. --> |
| 670 | <activity-alias android:name="LanguageSettings" |
Doris Ling | 7e06ed2 | 2017-06-07 14:16:43 -0700 | [diff] [blame] | 671 | android:label="@string/language_input_gesture_title" |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 672 | android:clearTaskOnLaunch="true" |
| 673 | android:exported="true" |
Doris Ling | d299b03 | 2017-02-28 17:32:36 -0800 | [diff] [blame] | 674 | android:targetActivity="Settings$LanguageAndInputSettingsActivity"> |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 675 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Doris Ling | d299b03 | 2017-02-28 17:32:36 -0800 | [diff] [blame] | 676 | android:value="com.android.settings.language.LanguageAndInputSettings" /> |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 677 | </activity-alias> |
| 678 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 679 | <activity |
| 680 | android:name="Settings$SpellCheckersSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 681 | android:label="@string/spellcheckers_settings_title"> |
satok | e077d2b | 2011-07-25 09:38:11 +0900 | [diff] [blame] | 682 | <intent-filter> |
| 683 | <action android:name="android.intent.action.MAIN" /> |
satok | e077d2b | 2011-07-25 09:38:11 +0900 | [diff] [blame] | 684 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 685 | <category android:name="android.intent.category.DEFAULT" /> |
satok | e077d2b | 2011-07-25 09:38:11 +0900 | [diff] [blame] | 686 | </intent-filter> |
| 687 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 688 | android:value="com.android.settings.inputmethod.SpellCheckersSettings" /> |
satok | e077d2b | 2011-07-25 09:38:11 +0900 | [diff] [blame] | 689 | </activity> |
| 690 | |
Daisuke Miyakawa | 649b9f1 | 2011-01-30 19:43:08 -0800 | [diff] [blame] | 691 | <activity android:name=".inputmethod.InputMethodAndSubtypeEnablerActivity" |
satok | 5e9c5e7 | 2011-07-21 15:32:28 +0900 | [diff] [blame] | 692 | android:label="" |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 693 | android:clearTaskOnLaunch="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 694 | <intent-filter android:priority="1"> |
| 695 | <action android:name="android.settings.INPUT_METHOD_SUBTYPE_SETTINGS" /> |
| 696 | <category android:name="android.intent.category.DEFAULT" /> |
| 697 | </intent-filter> |
satok | 4a5f889 | 2010-10-26 18:58:09 +0900 | [diff] [blame] | 698 | <intent-filter> |
| 699 | <action android:name="android.intent.action.MAIN" /> |
satok | 4a5f889 | 2010-10-26 18:58:09 +0900 | [diff] [blame] | 700 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 701 | <category android:name="android.intent.category.DEFAULT" /> |
satok | 4a5f889 | 2010-10-26 18:58:09 +0900 | [diff] [blame] | 702 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 703 | </activity> |
satok | 4a5f889 | 2010-10-26 18:58:09 +0900 | [diff] [blame] | 704 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 705 | <activity |
| 706 | android:name="Settings$UserDictionarySettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 707 | android:label="@string/user_dict_settings_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 708 | <intent-filter android:priority="1"> |
| 709 | <action android:name="android.settings.USER_DICTIONARY_SETTINGS" /> |
| 710 | <category android:name="android.intent.category.DEFAULT" /> |
| 711 | </intent-filter> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 712 | <intent-filter> |
| 713 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 714 | <category android:name="android.intent.category.DEFAULT" /> |
| 715 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 716 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 717 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Satoshi Kataoka | 71c915b | 2013-06-19 22:40:36 +0900 | [diff] [blame] | 718 | android:value="com.android.settings.inputmethod.UserDictionaryList" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 719 | </activity> |
| 720 | |
Jean Chalard | bd44e9d | 2011-11-30 20:51:20 +0900 | [diff] [blame] | 721 | <activity android:name=".inputmethod.UserDictionaryAddWordActivity" |
Patrick Baumann | 7a2f9dc | 2018-04-06 10:08:26 -0700 | [diff] [blame] | 722 | android:visibleToInstantApps="true" |
Satoshi Kataoka | 5df3307 | 2013-04-30 14:30:12 +0900 | [diff] [blame] | 723 | android:label="@string/user_dict_settings_title" |
jackqdyulei | 71a0574 | 2017-03-22 13:33:51 -0700 | [diff] [blame] | 724 | android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar" |
Jean Chalard | e17eefa | 2011-12-02 14:56:39 +0900 | [diff] [blame] | 725 | android:windowSoftInputMode="stateVisible" |
Jean Chalard | 124283e | 2011-12-16 19:35:46 +0900 | [diff] [blame] | 726 | android:noHistory="true" |
Jean Chalard | e17eefa | 2011-12-02 14:56:39 +0900 | [diff] [blame] | 727 | android:excludeFromRecents="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 728 | <intent-filter android:priority="1"> |
Jean Chalard | bd44e9d | 2011-11-30 20:51:20 +0900 | [diff] [blame] | 729 | <action android:name="com.android.settings.USER_DICTIONARY_INSERT" /> |
| 730 | <category android:name="android.intent.category.DEFAULT" /> |
Jean Chalard | bd44e9d | 2011-11-30 20:51:20 +0900 | [diff] [blame] | 731 | </intent-filter> |
| 732 | </activity> |
| 733 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 734 | <activity |
| 735 | android:name="Settings$ZenModeSettingsActivity" |
| 736 | android:label="@string/zen_mode_settings_title" |
Antony Sargent | 32acddc | 2018-05-21 16:42:11 -0700 | [diff] [blame] | 737 | android:icon="@drawable/ic_notifications" |
Fan Zhang | ac4ad16 | 2018-12-18 11:32:10 -0800 | [diff] [blame] | 738 | android:exported="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 739 | <intent-filter android:priority="1"> |
| 740 | <action android:name="android.settings.ZEN_MODE_SETTINGS" /> |
| 741 | <category android:name="android.intent.category.DEFAULT" /> |
| 742 | </intent-filter> |
Julia Reynolds | 200da89 | 2018-05-04 08:54:53 -0400 | [diff] [blame] | 743 | <intent-filter android:priority="1"> |
| 744 | <action android:name="android.settings.ZEN_MODE_PRIORITY_SETTINGS" /> |
| 745 | <category android:name="android.intent.category.DEFAULT" /> |
| 746 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 747 | <intent-filter android:priority="41"> |
John Spurlock | 7243806 | 2014-02-27 18:01:20 -0500 | [diff] [blame] | 748 | <action android:name="android.intent.action.MAIN" /> |
John Spurlock | 7243806 | 2014-02-27 18:01:20 -0500 | [diff] [blame] | 749 | <category android:name="com.android.settings.SHORTCUT" /> |
| 750 | </intent-filter> |
Beverly | 4359d4b | 2017-10-02 09:45:48 -0400 | [diff] [blame] | 751 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 752 | android:value="com.android.settings.notification.zen.ZenModeSettings" /> |
Beverly | 4359d4b | 2017-10-02 09:45:48 -0400 | [diff] [blame] | 753 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 754 | android:value="true" /> |
| 755 | </activity> |
| 756 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 757 | <activity |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 758 | android:name=".notification.zen.ZenSuggestionActivity" |
Beverly | 8f52258 | 2018-05-09 15:27:45 -0400 | [diff] [blame] | 759 | android:label="@string/zen_mode_settings_title" |
Mill Chen | 7195800 | 2019-01-23 10:44:39 +0800 | [diff] [blame] | 760 | android:icon="@drawable/ic_suggestion_dnd" |
Beverly | 8f52258 | 2018-05-09 15:27:45 -0400 | [diff] [blame] | 761 | android:theme="@android:style/Theme.NoDisplay"> |
| 762 | <intent-filter> |
| 763 | <action android:name="android.intent.action.MAIN" /> |
| 764 | <category android:name="com.android.settings.suggested.category.ZEN" /> |
| 765 | </intent-filter> |
| 766 | <intent-filter> |
| 767 | <action android:name="android.intent.action.MAIN" /> |
| 768 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
| 769 | </intent-filter> |
| 770 | |
| 771 | <meta-data android:name="com.android.settings.dismiss" |
| 772 | android:value="0" /> |
| 773 | <meta-data android:name="com.android.settings.title" |
| 774 | android:resource="@string/zen_suggestion_title" /> |
| 775 | <meta-data android:name="com.android.settings.summary" |
| 776 | android:resource="@string/zen_suggestion_summary" /> |
| 777 | </activity> |
| 778 | |
| 779 | <activity |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 780 | android:name=".notification.zen.ZenOnboardingActivity" |
Julia Reynolds | 4b8fe09 | 2018-04-09 15:24:55 -0400 | [diff] [blame] | 781 | android:label="@string/zen_onboarding_dnd_visual_disturbances_header" |
Antony Sargent | 32acddc | 2018-05-21 16:42:11 -0700 | [diff] [blame] | 782 | android:icon="@drawable/ic_notifications" |
Julia Reynolds | 29ba360 | 2018-04-30 09:13:34 -0400 | [diff] [blame] | 783 | android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 784 | android:exported="true"> |
Julia Reynolds | 4b8fe09 | 2018-04-09 15:24:55 -0400 | [diff] [blame] | 785 | <intent-filter android:priority="1"> |
| 786 | <action android:name="android.settings.ZEN_MODE_ONBOARDING" /> |
| 787 | <category android:name="android.intent.category.DEFAULT" /> |
| 788 | </intent-filter> |
| 789 | </activity> |
Julia Reynolds | 4b8fe09 | 2018-04-09 15:24:55 -0400 | [diff] [blame] | 790 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 791 | android:name="Settings$ZenModeAutomationSettingsActivity" |
| 792 | android:label="@string/zen_mode_automation_settings_title" |
Antony Sargent | 32acddc | 2018-05-21 16:42:11 -0700 | [diff] [blame] | 793 | android:icon="@drawable/ic_notifications" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 794 | android:exported="true"> |
Julia Reynolds | e175902 | 2017-03-22 14:05:46 -0400 | [diff] [blame] | 795 | <intent-filter android:priority="1"> |
| 796 | <action android:name="android.settings.ZEN_MODE_AUTOMATION_SETTINGS" /> |
| 797 | <category android:name="android.intent.category.DEFAULT" /> |
| 798 | </intent-filter> |
| 799 | <intent-filter android:priority="1"> |
| 800 | <action android:name="android.settings.ACTION_CONDITION_PROVIDER_SETTINGS" /> |
| 801 | <category android:name="android.intent.category.DEFAULT" /> |
| 802 | </intent-filter> |
John Spurlock | 7243806 | 2014-02-27 18:01:20 -0500 | [diff] [blame] | 803 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 804 | android:value="com.android.settings.notification.zen.ZenModeAutomationSettings" /> |
Julia Reynolds | 5555d26 | 2015-11-09 10:52:17 -0500 | [diff] [blame] | 805 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 806 | android:value="true" /> |
| 807 | </activity> |
| 808 | |
Vladislav Kaznacheev | 6e93bdd | 2016-03-09 14:24:45 -0800 | [diff] [blame] | 809 | <activity android:name="Settings$WallpaperSettingsActivity" |
| 810 | android:label="@string/wallpaper_settings_fragment_title" |
Sunny Shao | 61aaed4 | 2019-03-26 20:14:58 +0800 | [diff] [blame] | 811 | android:icon="@drawable/ic_wallpaper" |
| 812 | android:exported="true"> |
Vladislav Kaznacheev | 6e93bdd | 2016-03-09 14:24:45 -0800 | [diff] [blame] | 813 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 2907f86 | 2017-03-17 15:05:14 -0700 | [diff] [blame] | 814 | android:value="com.android.settings.wallpaper.WallpaperTypeSettings" /> |
Vladislav Kaznacheev | 6e93bdd | 2016-03-09 14:24:45 -0800 | [diff] [blame] | 815 | </activity> |
| 816 | |
Fan Zhang | 2907f86 | 2017-03-17 15:05:14 -0700 | [diff] [blame] | 817 | <activity android:name=".wallpaper.WallpaperSuggestionActivity" |
Sunny Goyal | 0bf6f94 | 2016-06-13 15:28:47 -0700 | [diff] [blame] | 818 | android:label="@string/wallpaper_settings_title" |
Mill Chen | e1fd5af | 2019-02-22 20:40:52 +0800 | [diff] [blame] | 819 | android:icon="@drawable/ic_wallpaper" |
Sunny Goyal | 0bf6f94 | 2016-06-13 15:28:47 -0700 | [diff] [blame] | 820 | android:theme="@android:style/Theme.NoDisplay"> |
Fan Zhang | 7afbf0f | 2017-05-08 09:31:01 -0700 | [diff] [blame] | 821 | <intent-filter> |
Jason Monk | b9e5d23 | 2016-01-26 17:43:57 -0500 | [diff] [blame] | 822 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | af91c1f | 2017-06-03 15:24:11 -0700 | [diff] [blame] | 823 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
Jason Monk | b9e5d23 | 2016-01-26 17:43:57 -0500 | [diff] [blame] | 824 | </intent-filter> |
Maurice Lam | d64d3c0 | 2017-07-07 18:21:29 -0700 | [diff] [blame] | 825 | <intent-filter> |
| 826 | <action android:name="android.intent.action.MAIN" /> |
| 827 | <category android:name="com.android.settings.suggested.category.PERSONALIZE" /> |
| 828 | </intent-filter> |
Jason Monk | b9e5d23 | 2016-01-26 17:43:57 -0500 | [diff] [blame] | 829 | <meta-data android:name="com.android.settings.title" |
Sunny Goyal | 0bf6f94 | 2016-06-13 15:28:47 -0700 | [diff] [blame] | 830 | android:resource="@string/wallpaper_suggestion_title" /> |
Jason Monk | ec1f28e | 2016-02-24 17:39:29 -0500 | [diff] [blame] | 831 | <meta-data android:name="com.android.settings.summary" |
Sunny Goyal | 0bf6f94 | 2016-06-13 15:28:47 -0700 | [diff] [blame] | 832 | android:resource="@string/wallpaper_suggestion_summary" /> |
Fan Zhang | af91c1f | 2017-06-03 15:24:11 -0700 | [diff] [blame] | 833 | <meta-data android:name="com.android.settings.dismiss" |
| 834 | android:value="3,7,30" /> |
Maurice Lam | 992fa86 | 2017-06-09 16:14:36 -0700 | [diff] [blame] | 835 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
Jason Monk | b9e5d23 | 2016-01-26 17:43:57 -0500 | [diff] [blame] | 836 | </activity> |
| 837 | |
Beth Thibodeau | bf63dde | 2019-04-29 17:59:54 -0400 | [diff] [blame] | 838 | <activity android:name=".wallpaper.StyleSuggestionActivity" |
| 839 | android:label="@string/style_suggestion_title" |
| 840 | android:icon="@drawable/ic_theme" |
| 841 | android:theme="@android:style/Theme.NoDisplay"> |
| 842 | <intent-filter> |
| 843 | <action android:name="android.intent.action.MAIN" /> |
| 844 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
| 845 | </intent-filter> |
| 846 | <meta-data android:name="com.android.settings.title" |
| 847 | android:resource="@string/style_suggestion_title" /> |
| 848 | <meta-data android:name="com.android.settings.summary" |
| 849 | android:resource="@string/style_suggestion_summary" /> |
| 850 | <meta-data android:name="com.android.settings.dismiss" |
| 851 | android:value="3,7,30" /> |
| 852 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
| 853 | </activity> |
| 854 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 855 | <activity |
| 856 | android:name="Settings$ZenModeScheduleRuleSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 857 | android:exported="true"> |
John Spurlock | 45fa140 | 2015-04-09 12:50:04 -0400 | [diff] [blame] | 858 | <intent-filter android:priority="1"> |
| 859 | <action android:name="android.settings.ZEN_MODE_SCHEDULE_RULE_SETTINGS" /> |
| 860 | <category android:name="android.intent.category.DEFAULT" /> |
| 861 | </intent-filter> |
| 862 | <intent-filter> |
| 863 | <action android:name="android.intent.action.MAIN" /> |
| 864 | <category android:name="android.intent.category.DEFAULT" /> |
John Spurlock | 45fa140 | 2015-04-09 12:50:04 -0400 | [diff] [blame] | 865 | </intent-filter> |
| 866 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 867 | android:value="com.android.settings.notification.zen.ZenModeScheduleRuleSettings" /> |
John Spurlock | 45fa140 | 2015-04-09 12:50:04 -0400 | [diff] [blame] | 868 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 869 | android:value="true" /> |
| 870 | </activity> |
| 871 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 872 | <activity |
| 873 | android:name="Settings$ZenModeEventRuleSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 874 | android:exported="true"> |
John Spurlock | f57bad7 | 2015-04-30 09:26:15 -0400 | [diff] [blame] | 875 | <intent-filter android:priority="1"> |
| 876 | <action android:name="android.settings.ZEN_MODE_EVENT_RULE_SETTINGS" /> |
| 877 | <category android:name="android.intent.category.DEFAULT" /> |
| 878 | </intent-filter> |
John Spurlock | f57bad7 | 2015-04-30 09:26:15 -0400 | [diff] [blame] | 879 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 880 | android:value="com.android.settings.notification.zen.ZenModeEventRuleSettings" /> |
John Spurlock | f57bad7 | 2015-04-30 09:26:15 -0400 | [diff] [blame] | 881 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 882 | android:value="true" /> |
| 883 | </activity> |
| 884 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 885 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 886 | android:name="Settings$DisplaySettingsActivity" |
| 887 | android:label="@string/display_settings" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 888 | android:icon="@drawable/ic_homepage_display"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 889 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 890 | <action android:name="com.android.settings.DISPLAY_SETTINGS" /> |
Amith Yamasani | 0422a3b | 2009-06-12 14:15:20 -0700 | [diff] [blame] | 891 | <action android:name="android.settings.DISPLAY_SETTINGS" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 892 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 893 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 894 | <intent-filter android:priority="30"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 895 | <action android:name="android.intent.action.MAIN" /> |
Dianne Hackborn | a54672f | 2009-06-24 12:45:09 -0700 | [diff] [blame] | 896 | <category android:name="com.android.settings.SHORTCUT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 897 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 898 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 899 | android:value="com.android.settings.DisplaySettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 900 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 901 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 902 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 903 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 904 | <activity |
| 905 | android:name="Settings$NightDisplaySettingsActivity" |
| 906 | android:label="@string/night_display_title" |
| 907 | android:enabled="@*android:bool/config_nightDisplayAvailable" |
Fan Zhang | ac4ad16 | 2018-12-18 11:32:10 -0800 | [diff] [blame] | 908 | android:icon="@drawable/ic_settings_night_display"> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 909 | <intent-filter android:priority="32"> |
Sean Stout | 763acf0 | 2017-06-20 18:07:22 -0700 | [diff] [blame] | 910 | <action android:name="android.intent.action.MAIN" /> |
Sean Stout | 763acf0 | 2017-06-20 18:07:22 -0700 | [diff] [blame] | 911 | <category android:name="com.android.settings.SHORTCUT" /> |
| 912 | </intent-filter> |
Justin Klaassen | eae3d9f | 2016-07-21 19:25:17 -0700 | [diff] [blame] | 913 | <intent-filter android:priority="1"> |
| 914 | <action android:name="android.settings.NIGHT_DISPLAY_SETTINGS" /> |
| 915 | <category android:name="android.intent.category.DEFAULT" /> |
| 916 | </intent-filter> |
Sean Stout | 0625126 | 2017-02-15 14:04:25 -0800 | [diff] [blame] | 917 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 918 | android:value="com.android.settings.display.NightDisplaySettings" /> |
Sean Stout | 40067be | 2017-04-10 15:31:25 -0700 | [diff] [blame] | 919 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 920 | android:value="true" /> |
Justin Klaassen | eae3d9f | 2016-07-21 19:25:17 -0700 | [diff] [blame] | 921 | </activity> |
| 922 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 923 | <activity |
Jay Aliomer | 82a0ea0 | 2019-12-10 14:49:27 -0500 | [diff] [blame] | 924 | android:name="Settings$DarkThemeSettingsActivity" |
| 925 | android:label="@string/dark_ui_auto_mode_title" |
| 926 | android:enabled="true"> |
| 927 | <intent-filter android:priority="32"> |
| 928 | <action android:name="android.intent.action.MAIN" /> |
| 929 | <category android:name="com.android.settings.SHORTCUT" /> |
| 930 | </intent-filter> |
| 931 | <intent-filter android:priority="1"> |
| 932 | <action android:name="android.settings.DARK_THEME_SETTINGS" /> |
| 933 | <category android:name="android.intent.category.DEFAULT" /> |
| 934 | </intent-filter> |
| 935 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 936 | android:value="com.android.settings.display.darkmode.DarkModeSettingsFragment" /> |
| 937 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 938 | android:value="true" /> |
| 939 | </activity> |
| 940 | |
| 941 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 942 | android:name="Settings$NightDisplaySuggestionActivity" |
Sean Stout | 2bc94d6 | 2017-05-18 13:39:25 -0700 | [diff] [blame] | 943 | android:enabled="@*android:bool/config_nightDisplayAvailable" |
Mill Chen | 7195800 | 2019-01-23 10:44:39 +0800 | [diff] [blame] | 944 | android:icon="@drawable/ic_suggestion_night_display"> |
Sean Stout | 2bc94d6 | 2017-05-18 13:39:25 -0700 | [diff] [blame] | 945 | <intent-filter> |
| 946 | <action android:name="android.intent.action.MAIN" /> |
| 947 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
| 948 | </intent-filter> |
| 949 | <meta-data android:name="com.android.settings.dismiss" |
| 950 | android:value="6,10,30" /> |
| 951 | <meta-data android:name="com.android.settings.title" |
| 952 | android:resource="@string/night_display_suggestion_title" /> |
| 953 | <meta-data android:name="com.android.settings.summary" |
| 954 | android:resource="@string/night_display_suggestion_summary" /> |
| 955 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 956 | android:value="true" /> |
| 957 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 958 | android:value="com.android.settings.display.NightDisplaySettings" /> |
| 959 | </activity> |
| 960 | |
Fan Zhang | 881d579 | 2018-01-26 10:15:56 -0800 | [diff] [blame] | 961 | <activity android:name=".Settings$MyDeviceInfoActivity" |
Daniel Nishi | 1225469 | 2018-03-23 13:43:12 -0700 | [diff] [blame] | 962 | android:label="@string/about_settings" |
Sunny Shao | 8614058 | 2019-03-22 15:22:36 +0800 | [diff] [blame] | 963 | android:icon="@drawable/ic_homepage_about"> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 964 | <intent-filter android:priority="1"> |
Daniel Nishi | 87f35e2 | 2018-01-22 15:17:25 -0800 | [diff] [blame] | 965 | <action android:name="android.settings.DEVICE_INFO_SETTINGS" /> |
Daniel Nishi | 41af55e | 2018-01-25 15:24:29 -0800 | [diff] [blame] | 966 | <action android:name="android.settings.DEVICE_NAME" /> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 967 | <category android:name="android.intent.category.DEFAULT" /> |
| 968 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 969 | <intent-filter android:priority="71"> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 970 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 971 | <category android:name="com.android.settings.SHORTCUT" /> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 972 | </intent-filter> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 973 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Daniel Nishi | 87f35e2 | 2018-01-22 15:17:25 -0800 | [diff] [blame] | 974 | android:value="com.android.settings.deviceinfo.aboutphone.MyDeviceInfoFragment" /> |
Daniel Nishi | 1e62095 | 2017-12-19 10:15:14 -0800 | [diff] [blame] | 975 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 976 | android:value="true" /> |
| 977 | </activity> |
| 978 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 979 | <activity |
| 980 | android:name="SettingsLicenseActivity" |
| 981 | android:label="@string/settings_license_activity_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 982 | android:configChanges="orientation|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 983 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 984 | <action android:name="android.settings.LICENSE" /> |
| 985 | <category android:name="android.intent.category.DEFAULT" /> |
| 986 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 987 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 988 | android:value="true" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 989 | </activity> |
| 990 | |
Andrew Sapperstein | 56a8c33 | 2019-06-18 09:44:18 -0700 | [diff] [blame] | 991 | <activity android:name=".Settings$ModuleLicensesActivity" |
| 992 | android:label="@string/module_license_title"> |
| 993 | <intent-filter> |
| 994 | <action android:name="android.settings.MODULE_LICENSES" /> |
| 995 | <category android:name="android.intent.category.DEFAULT" /> |
| 996 | </intent-filter> |
| 997 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 998 | android:value="com.android.settings.deviceinfo.legal.ModuleLicensesDashboard" /> |
| 999 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1000 | android:value="true" /> |
| 1001 | </activity> |
| 1002 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1003 | <activity |
| 1004 | android:name="Settings$ManageApplicationsActivity" |
Fan Zhang | c7635e5 | 2019-03-04 14:27:08 -0800 | [diff] [blame] | 1005 | android:label="@string/applications_settings"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1006 | <intent-filter android:priority="1"> |
Gilles Debunne | ab189bd | 2011-07-06 13:10:16 -0700 | [diff] [blame] | 1007 | <action android:name="android.settings.APPLICATION_SETTINGS" /> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1008 | <action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" /> |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1009 | <action android:name="android.settings.MANAGE_ALL_APPLICATIONS_SETTINGS" /> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1010 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1011 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 1012 | <intent-filter android:priority="20"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1013 | <action android:name="android.intent.action.MAIN" /> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1014 | <category android:name="com.android.settings.SHORTCUT" /> |
| 1015 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1016 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1017 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Zoltan Szatmary-Ban | de7d498 | 2015-03-31 19:49:18 +0100 | [diff] [blame] | 1018 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1019 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1020 | </activity> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1021 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1022 | <!-- Keep compatibility with old shortcuts. --> |
| 1023 | <activity-alias android:name=".applications.ManageApplications" |
| 1024 | android:label="@string/applications_settings" |
| 1025 | android:exported="true" |
| 1026 | android:targetActivity="Settings$ManageApplicationsActivity"> |
| 1027 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1028 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
| 1029 | </activity-alias> |
| 1030 | |
| 1031 | <activity |
| 1032 | android:name="Settings$ManageDomainUrlsActivity" |
Sunny Shao | 600ba96 | 2019-07-04 11:52:59 +0800 | [diff] [blame] | 1033 | android:label="@string/domain_urls_title"> |
Todd Kennedy | 2ef1aa5 | 2016-09-06 14:02:38 -0700 | [diff] [blame] | 1034 | <intent-filter> |
| 1035 | <action android:name="android.settings.MANAGE_DOMAIN_URLS" /> |
| 1036 | <category android:name="android.intent.category.DEFAULT" /> |
| 1037 | </intent-filter> |
Todd Kennedy | 2ef1aa5 | 2016-09-06 14:02:38 -0700 | [diff] [blame] | 1038 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
stanley.tf_wang | 828409a | 2018-04-13 16:18:13 +0800 | [diff] [blame] | 1039 | android:value="com.android.settings.applications.managedomainurls.ManageDomainUrls" /> |
Todd Kennedy | 2ef1aa5 | 2016-09-06 14:02:38 -0700 | [diff] [blame] | 1040 | </activity> |
| 1041 | |
Muyuan Li | ba115af | 2016-03-25 15:46:12 -0700 | [diff] [blame] | 1042 | <activity android:name="Settings$AppMemoryUsageActivity" |
| 1043 | android:label="@string/app_list_memory_use" |
| 1044 | android:icon="@drawable/ic_settings_memory"> |
| 1045 | <intent-filter> |
| 1046 | <action android:name="android.settings.APP_MEMORY_USAGE" /> |
| 1047 | <category android:name="android.intent.category.DEFAULT" /> |
| 1048 | </intent-filter> |
Muyuan Li | ba115af | 2016-03-25 15:46:12 -0700 | [diff] [blame] | 1049 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1050 | android:value="com.android.settings.applications.ProcessStatsUi" /> |
| 1051 | </activity> |
| 1052 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1053 | <activity |
| 1054 | android:name="Settings$HighPowerApplicationsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1055 | android:label="@string/high_power_apps"> |
Jason Monk | 3a90d7c | 2015-06-10 11:03:06 -0400 | [diff] [blame] | 1056 | <intent-filter android:priority="1"> |
| 1057 | <action android:name="android.settings.IGNORE_BATTERY_OPTIMIZATION_SETTINGS" /> |
| 1058 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 3f98c0c | 2015-06-12 18:13:54 -0700 | [diff] [blame] | 1059 | </intent-filter> |
Jason Monk | 1eb54eb | 2015-04-29 12:46:42 -0400 | [diff] [blame] | 1060 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1061 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Jason Monk | 1eb54eb | 2015-04-29 12:46:42 -0400 | [diff] [blame] | 1062 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1063 | android:value="true" /> |
| 1064 | </activity> |
| 1065 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1066 | <activity |
| 1067 | android:name=".datausage.AppDataUsageActivity" |
| 1068 | android:noHistory="true"> |
Felipe Leme | 616ff3e | 2016-04-26 13:50:14 -0700 | [diff] [blame] | 1069 | <intent-filter android:priority="1"> |
| 1070 | <action android:name="android.settings.IGNORE_BACKGROUND_DATA_RESTRICTIONS_SETTINGS" /> |
| 1071 | <category android:name="android.intent.category.DEFAULT" /> |
| 1072 | <data android:scheme="package" /> |
| 1073 | </intent-filter> |
| 1074 | </activity> |
| 1075 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1076 | <activity |
| 1077 | android:name=".fuelgauge.RequestIgnoreBatteryOptimizations" |
| 1078 | android:label="@string/high_power_apps" |
| 1079 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Dianne Hackborn | be4df03 | 2015-08-10 14:53:33 -0700 | [diff] [blame] | 1080 | <intent-filter android:priority="1"> |
| 1081 | <action android:name="android.settings.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" /> |
| 1082 | <category android:name="android.intent.category.DEFAULT" /> |
| 1083 | <data android:scheme="package" /> |
| 1084 | </intent-filter> |
| 1085 | </activity> |
| 1086 | |
Fan Zhang | 66156d6 | 2018-05-09 17:33:19 -0700 | [diff] [blame] | 1087 | <activity |
| 1088 | android:name=".slices.SliceDeepLinkSpringBoard" |
| 1089 | android:excludeFromRecents="true" |
Fan Zhang | 03dd39c | 2019-04-02 16:41:01 -0700 | [diff] [blame] | 1090 | android:theme="@android:style/Theme.NoDisplay" |
| 1091 | android:permission="android.permission.MODIFY_PHONE_STATE"> |
Jason Monk | f6edc7c | 2017-11-22 10:04:38 -0500 | [diff] [blame] | 1092 | <intent-filter> |
| 1093 | <action android:name="android.intent.action.VIEW" /> |
| 1094 | <category android:name="android.intent.category.DEFAULT" /> |
| 1095 | <category android:name="android.intent.category.BROWSABLE" /> |
| 1096 | <data android:scheme="settings" |
| 1097 | android:host="com.android.settings.slices" /> |
| 1098 | </intent-filter> |
| 1099 | </activity> |
| 1100 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1101 | <!-- Provide direct entry into manage apps showing running services. |
| 1102 | This is for compatibility with old shortcuts. --> |
| 1103 | <activity-alias android:name=".RunningServices" |
| 1104 | android:label="@string/runningservices_settings_title" |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1105 | android:exported="true" |
| 1106 | android:targetActivity="Settings$ManageApplicationsActivity"> |
| 1107 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1108 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1109 | </activity-alias> |
Lifu Tang | fc86f69 | 2013-07-30 18:34:35 -0700 | [diff] [blame] | 1110 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1111 | <!-- Provide direct entry into manage apps showing storage usage for apps. |
| 1112 | This is for compatibility with old shortcuts. --> |
| 1113 | <activity-alias android:name=".applications.StorageUse" |
| 1114 | android:label="@string/storageuse_settings_title" |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1115 | android:exported="true" |
| 1116 | android:targetActivity="Settings$ManageApplicationsActivity"> |
| 1117 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1118 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1119 | </activity-alias> |
| 1120 | |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1121 | <!-- Still need a top-level activity for showing app details. Aliasing |
| 1122 | trick is so the code that is now a fragment can still be called |
| 1123 | InstalledAppDetails. --> |
| 1124 | <activity android:name=".applications.InstalledAppDetailsTop" |
| 1125 | android:label="@string/application_info_label" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1126 | android:exported="true" /> |
Gilles Debunne | ab189bd | 2011-07-06 13:10:16 -0700 | [diff] [blame] | 1127 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1128 | <!-- Keep compatibility with old shortcuts. --> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1129 | <activity-alias android:name=".applications.InstalledAppDetails" |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1130 | android:label="@string/application_info_label" |
| 1131 | android:exported="true" |
| 1132 | android:targetActivity=".applications.InstalledAppDetailsTop"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1133 | <intent-filter android:priority="1"> |
Dianne Hackborn | f4eb85b | 2010-10-29 16:53:04 -0700 | [diff] [blame] | 1134 | <action android:name="android.settings.APPLICATION_DETAILS_SETTINGS" /> |
| 1135 | <category android:name="android.intent.category.DEFAULT" /> |
| 1136 | <data android:scheme="package" /> |
| 1137 | </intent-filter> |
| 1138 | </activity-alias> |
| 1139 | |
Ben Lin | 30ed7c7 | 2018-09-13 15:22:03 -0700 | [diff] [blame] | 1140 | <activity android:name=".applications.InstalledAppOpenByDefaultActivity" |
Ben Lin | 0cdc103 | 2018-02-27 15:31:40 -0800 | [diff] [blame] | 1141 | android:label="@string/application_info_label" |
Ben Lin | 30ed7c7 | 2018-09-13 15:22:03 -0700 | [diff] [blame] | 1142 | android:permission="android.permission.OPEN_APP_OPEN_BY_DEFAULT_SETTINGS" |
Ben Lin | 0cdc103 | 2018-02-27 15:31:40 -0800 | [diff] [blame] | 1143 | android:exported="true"> |
| 1144 | <intent-filter android:priority="1"> |
Ben Lin | 30ed7c7 | 2018-09-13 15:22:03 -0700 | [diff] [blame] | 1145 | <action android:name="com.android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" /> |
Ben Lin | 0cdc103 | 2018-02-27 15:31:40 -0800 | [diff] [blame] | 1146 | <category android:name="android.intent.category.DEFAULT" /> |
| 1147 | <data android:scheme="package" /> |
| 1148 | </intent-filter> |
| 1149 | </activity> |
| 1150 | |
Dianne Hackborn | 508fedc | 2010-07-28 17:10:42 -0700 | [diff] [blame] | 1151 | <!-- Provide direct entry into manage apps showing running services. --> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1152 | <activity android:name="Settings$RunningServicesActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1153 | android:label="@string/runningservices_settings_title"> |
Dianne Hackborn | c58c549 | 2009-08-31 21:33:17 -0700 | [diff] [blame] | 1154 | <intent-filter> |
| 1155 | <action android:name="android.intent.action.MAIN" /> |
| 1156 | <category android:name="android.intent.category.DEFAULT" /> |
| 1157 | <category android:name="android.intent.category.MONKEY" /> |
| 1158 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
Dianne Hackborn | c58c549 | 2009-08-31 21:33:17 -0700 | [diff] [blame] | 1159 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1160 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1161 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Zoltan Szatmary-Ban | de7d498 | 2015-03-31 19:49:18 +0100 | [diff] [blame] | 1162 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1163 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1164 | </activity> |
Amith Yamasani | 1bb6db5 | 2010-09-17 13:34:47 -0700 | [diff] [blame] | 1165 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1166 | <!-- Provide direct entry into manage apps showing storage usage of apps. --> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1167 | <activity |
| 1168 | android:name="Settings$StorageUseActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1169 | android:label="@string/storageuse_settings_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1170 | <intent-filter android:priority="1"> |
| 1171 | <action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" /> |
| 1172 | <category android:name="android.intent.category.DEFAULT" /> |
| 1173 | </intent-filter> |
Dianne Hackborn | 728ac35 | 2010-06-06 22:51:42 -0700 | [diff] [blame] | 1174 | <intent-filter> |
| 1175 | <action android:name="android.intent.action.MAIN" /> |
| 1176 | <category android:name="android.intent.category.DEFAULT" /> |
| 1177 | <category android:name="android.intent.category.MONKEY" /> |
| 1178 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
Dianne Hackborn | 728ac35 | 2010-06-06 22:51:42 -0700 | [diff] [blame] | 1179 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1180 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1181 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Zoltan Szatmary-Ban | de7d498 | 2015-03-31 19:49:18 +0100 | [diff] [blame] | 1182 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1183 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1184 | </activity> |
Amith Yamasani | 1bb6db5 | 2010-09-17 13:34:47 -0700 | [diff] [blame] | 1185 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1186 | <activity |
| 1187 | android:name="Settings$NotificationStationActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1188 | android:label="@string/notification_log_title"> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 1189 | <intent-filter android:priority="22"> |
Daniel Sandler | 328e2d2 | 2013-01-17 13:14:02 -0500 | [diff] [blame] | 1190 | <action android:name="android.intent.action.MAIN" /> |
Daniel Sandler | 328e2d2 | 2013-01-17 13:14:02 -0500 | [diff] [blame] | 1191 | <category android:name="com.android.settings.SHORTCUT" /> |
| 1192 | </intent-filter> |
| 1193 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 1194 | android:value="com.android.settings.notification.history.NotificationStation" /> |
Daniel Sandler | 328e2d2 | 2013-01-17 13:14:02 -0500 | [diff] [blame] | 1195 | </activity> |
| 1196 | |
Julia Reynolds | b37d565 | 2019-12-12 08:12:29 -0500 | [diff] [blame] | 1197 | <activity |
| 1198 | android:name=".notification.history.NotificationHistoryActivity" |
| 1199 | android:label="@string/notification_history_title"> |
Julia Reynolds | 49880c3 | 2020-02-11 14:09:42 -0500 | [diff] [blame] | 1200 | <intent-filter android:priority="1"> |
| 1201 | <action android:name="android.settings.NOTIFICATION_HISTORY" /> |
| 1202 | <category android:name="android.intent.category.DEFAULT" /> |
| 1203 | </intent-filter> |
Julia Reynolds | b37d565 | 2019-12-12 08:12:29 -0500 | [diff] [blame] | 1204 | <intent-filter> |
| 1205 | <action android:name="android.intent.action.MAIN" /> |
| 1206 | <category android:name="android.intent.category.DEFAULT" /> |
| 1207 | </intent-filter> |
| 1208 | </activity> |
| 1209 | |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 1210 | <activity android:name=".notification.zen.ZenModeVoiceActivity" |
jackqdyulei | 71a0574 | 2017-03-22 13:33:51 -0700 | [diff] [blame] | 1211 | android:theme="@*android:style/Theme.DeviceDefault.Settings.Dialog.NoActionBar" |
Barnaby James | 0474b72 | 2015-05-10 16:24:05 -0700 | [diff] [blame] | 1212 | android:label="@string/zen_mode_settings_title"> |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 1213 | <intent-filter> |
| 1214 | <action android:name="android.settings.VOICE_CONTROL_DO_NOT_DISTURB_MODE" /> |
| 1215 | <category android:name="android.intent.category.DEFAULT" /> |
| 1216 | <category android:name="android.intent.category.VOICE" /> |
| 1217 | </intent-filter> |
| 1218 | </activity> |
| 1219 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1220 | <activity |
| 1221 | android:name="Settings$LocationSettingsActivity" |
| 1222 | android:label="@string/location_settings_title" |
Tsung-Mao Fang | 9c8a1b0 | 2019-11-25 16:09:00 +0800 | [diff] [blame] | 1223 | android:icon="@drawable/ic_settings_location" |
Yanting Yang | 5edcc30 | 2019-09-05 16:25:17 +0800 | [diff] [blame] | 1224 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1225 | <intent-filter android:priority="1"> |
| 1226 | <action android:name="android.settings.LOCATION_SOURCE_SETTINGS" /> |
| 1227 | <category android:name="android.intent.category.DEFAULT" /> |
| 1228 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 1229 | <intent-filter android:priority="52"> |
Gilles Debunne | a6a8a14 | 2011-06-09 11:56:17 -0700 | [diff] [blame] | 1230 | <action android:name="android.intent.action.MAIN" /> |
Gilles Debunne | a6a8a14 | 2011-06-09 11:56:17 -0700 | [diff] [blame] | 1231 | <category android:name="com.android.settings.SHORTCUT" /> |
| 1232 | </intent-filter> |
| 1233 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Lifu Tang | 83ab7c9 | 2013-07-29 12:07:48 -0700 | [diff] [blame] | 1234 | android:value="com.android.settings.location.LocationSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1235 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1236 | android:value="true" /> |
Gilles Debunne | a6a8a14 | 2011-06-09 11:56:17 -0700 | [diff] [blame] | 1237 | </activity> |
Lifu Tang | f72f830 | 2018-04-12 10:01:29 -0700 | [diff] [blame] | 1238 | <activity |
| 1239 | android:name="Settings$ScanningSettingsActivity" |
| 1240 | android:label="@string/location_scanning_screen_title" |
tmfang | 54a5d37 | 2018-10-30 16:49:12 +0800 | [diff] [blame] | 1241 | android:icon="@drawable/ic_homepage_location" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1242 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Lifu Tang | f72f830 | 2018-04-12 10:01:29 -0700 | [diff] [blame] | 1243 | <intent-filter android:priority="1"> |
| 1244 | <action android:name="android.settings.LOCATION_SCANNING_SETTINGS" /> |
| 1245 | <category android:name="android.intent.category.DEFAULT" /> |
| 1246 | </intent-filter> |
| 1247 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1248 | android:value="com.android.settings.location.ScanningSettings" /> |
| 1249 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1250 | android:value="true" /> |
| 1251 | </activity> |
Gilles Debunne | a6a8a14 | 2011-06-09 11:56:17 -0700 | [diff] [blame] | 1252 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1253 | <activity |
| 1254 | android:name=".Settings$SecurityDashboardActivity" |
| 1255 | android:label="@string/security_settings_title" |
| 1256 | android:icon="@drawable/ic_homepage_security" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1257 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1258 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1259 | <action android:name="android.settings.SECURITY_SETTINGS" /> |
Chia-chi Yeh | 9cec698 | 2009-09-22 23:59:01 +0800 | [diff] [blame] | 1260 | <action android:name="android.credentials.UNLOCK" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1261 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1262 | </intent-filter> |
| 1263 | <intent-filter> |
| 1264 | <action android:name="android.intent.action.MAIN" /> |
| 1265 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1266 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 1267 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1268 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | b916456 | 2017-11-03 09:35:12 -0700 | [diff] [blame] | 1269 | android:value="com.android.settings.security.SecuritySettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1270 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1271 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1272 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1273 | |
Maggie Benthall | 9d6c40e | 2013-09-05 15:33:58 -0400 | [diff] [blame] | 1274 | <activity android:name="MonitoringCertInfoActivity" |
Victor Chang | e8a46f2 | 2016-04-19 17:45:07 +0100 | [diff] [blame] | 1275 | android:label="" |
Maggie Benthall | 9d6c40e | 2013-09-05 15:33:58 -0400 | [diff] [blame] | 1276 | android:theme="@style/Transparent" |
Fan Zhang | 416ff0a | 2018-10-26 15:39:39 -0700 | [diff] [blame] | 1277 | android:excludeFromRecents="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1278 | <intent-filter android:priority="1"> |
| 1279 | <action android:name="com.android.settings.MONITORING_CERT_INFO" /> |
| 1280 | <category android:name="android.intent.category.DEFAULT" /> |
| 1281 | </intent-filter> |
Maggie Benthall | 9d6c40e | 2013-09-05 15:33:58 -0400 | [diff] [blame] | 1282 | </activity> |
| 1283 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1284 | <activity |
| 1285 | android:name="Settings$TrustedCredentialsSettingsActivity" |
| 1286 | android:label="@string/trusted_credentials" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1287 | android:icon="@drawable/ic_settings_security"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1288 | <intent-filter android:priority="1"> |
Geoffrey Borggaard | fc6bc20 | 2013-08-09 11:44:42 -0400 | [diff] [blame] | 1289 | <action android:name="com.android.settings.TRUSTED_CREDENTIALS" /> |
| 1290 | <action android:name="com.android.settings.TRUSTED_CREDENTIALS_USER" /> |
| 1291 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1292 | </intent-filter> |
Geoffrey Borggaard | fc6bc20 | 2013-08-09 11:44:42 -0400 | [diff] [blame] | 1293 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1294 | android:value="com.android.settings.TrustedCredentialsSettings" /> |
Victor Chang | 37afa28 | 2016-04-07 21:20:38 +0100 | [diff] [blame] | 1295 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1296 | android:value="true" /> |
Geoffrey Borggaard | fc6bc20 | 2013-08-09 11:44:42 -0400 | [diff] [blame] | 1297 | </activity> |
| 1298 | |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1299 | <activity android:name="Settings$PrivacySettingsActivity" |
Amith Yamasani | e65c943 | 2009-09-22 13:50:19 -0700 | [diff] [blame] | 1300 | android:label="@string/privacy_settings_title" |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 1301 | android:icon="@drawable/ic_settings_backup" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1302 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1303 | <intent-filter> |
| 1304 | <action android:name="android.intent.action.MAIN" /> |
| 1305 | <category android:name="android.intent.category.DEFAULT" /> |
Amith Yamasani | e65c943 | 2009-09-22 13:50:19 -0700 | [diff] [blame] | 1306 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 1307 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1308 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
sunnyshao | 15ec2cf | 2018-03-29 19:50:20 +0800 | [diff] [blame] | 1309 | android:value="com.android.settings.backup.PrivacySettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1310 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1311 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1312 | </activity> |
Amith Yamasani | e65c943 | 2009-09-22 13:50:19 -0700 | [diff] [blame] | 1313 | |
Fan Zhang | 11482d2 | 2019-02-06 10:37:03 -0800 | [diff] [blame] | 1314 | <activity android:name="Settings$PrivacyDashboardActivity" |
| 1315 | android:label="@string/privacy_dashboard_title" |
| 1316 | android:icon="@drawable/ic_settings_privacy"> |
| 1317 | <intent-filter> |
| 1318 | <action android:name="android.settings.PRIVACY_SETTINGS" /> |
| 1319 | <category android:name="android.intent.category.DEFAULT" /> |
| 1320 | </intent-filter> |
Felipe Leme | a71991a | 2019-03-07 15:33:51 -0800 | [diff] [blame] | 1321 | <intent-filter android:priority="1"> |
| 1322 | <action android:name="android.settings.REQUEST_ENABLE_CONTENT_CAPTURE" /> |
| 1323 | <category android:name="android.intent.category.DEFAULT" /> |
| 1324 | </intent-filter> |
Fan Zhang | 11482d2 | 2019-02-06 10:37:03 -0800 | [diff] [blame] | 1325 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1326 | android:value="com.android.settings.privacy.PrivacyDashboardFragment" /> |
tmfang | bf2989a | 2019-04-24 10:29:46 +0800 | [diff] [blame] | 1327 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1328 | android:value="true" /> |
Fan Zhang | 11482d2 | 2019-02-06 10:37:03 -0800 | [diff] [blame] | 1329 | </activity> |
| 1330 | |
Christopher Tate | 4f33878 | 2011-07-25 12:09:10 -0700 | [diff] [blame] | 1331 | <activity android:name="SetFullBackupPassword" |
Doris Ling | 03a3b51 | 2017-10-18 14:25:01 -0700 | [diff] [blame] | 1332 | android:label="@string/local_backup_password_title" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1333 | android:exported="false" /> |
Christopher Tate | 4f33878 | 2011-07-25 12:09:10 -0700 | [diff] [blame] | 1334 | |
Eran Messeri | 1e9bd27 | 2019-01-24 10:12:01 +0000 | [diff] [blame] | 1335 | <activity android:name=".security.CredentialStorage" |
Chia-chi Yeh | 91d65a2 | 2011-01-20 18:46:01 +0800 | [diff] [blame] | 1336 | android:theme="@style/Transparent" |
Amith Yamasani | b981202 | 2011-08-26 15:39:16 -0700 | [diff] [blame] | 1337 | android:launchMode="singleTop" |
Gilles Debunne | ab189bd | 2011-07-06 13:10:16 -0700 | [diff] [blame] | 1338 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1339 | <intent-filter android:priority="1"> |
Chia-chi Yeh | 91d65a2 | 2011-01-20 18:46:01 +0800 | [diff] [blame] | 1340 | <action android:name="com.android.credentials.INSTALL" /> |
Chia-chi Yeh | 91d65a2 | 2011-01-20 18:46:01 +0800 | [diff] [blame] | 1341 | <action android:name="com.android.credentials.RESET" /> |
| 1342 | <category android:name="android.intent.category.DEFAULT" /> |
| 1343 | </intent-filter> |
| 1344 | </activity> |
| 1345 | |
Alex Johnston | c0c75a3 | 2019-10-18 14:20:27 +0100 | [diff] [blame] | 1346 | <activity android:name=".security.InstallCaCertificateWarning" |
| 1347 | android:theme="@style/GlifV3Theme.Light" |
| 1348 | android:exported="false"> |
| 1349 | </activity> |
| 1350 | |
Victor Hsieh | c8a1960 | 2019-10-30 15:35:19 -0700 | [diff] [blame] | 1351 | <activity android:name=".security.InstallAppSourceCertificateWarning" |
| 1352 | android:theme="@style/GlifV3Theme.Light" |
| 1353 | android:exported="false"> |
| 1354 | </activity> |
| 1355 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1356 | <activity |
| 1357 | android:name="Settings$DeviceAdminSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1358 | android:label="@string/device_admin_settings_title"> |
Dianne Hackborn | feff652 | 2010-01-12 18:18:05 -0800 | [diff] [blame] | 1359 | <intent-filter> |
| 1360 | <action android:name="android.intent.action.MAIN" /> |
Dianne Hackborn | feff652 | 2010-01-12 18:18:05 -0800 | [diff] [blame] | 1361 | <category android:name="android.intent.category.DEFAULT" /> |
| 1362 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
Dianne Hackborn | feff652 | 2010-01-12 18:18:05 -0800 | [diff] [blame] | 1363 | </intent-filter> |
Amith Yamasani | a1d0184 | 2011-01-24 16:02:11 -0800 | [diff] [blame] | 1364 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | ca6d86c | 2018-06-14 12:52:06 -0700 | [diff] [blame] | 1365 | android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" /> |
Dianne Hackborn | feff652 | 2010-01-12 18:18:05 -0800 | [diff] [blame] | 1366 | </activity> |
| 1367 | |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1368 | <!-- Keep compatibility with old shortcuts. --> |
| 1369 | <activity-alias android:name="DeviceAdminSettings" |
| 1370 | android:label="@string/device_admin_settings_title" |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1371 | android:exported="true" |
| 1372 | android:targetActivity="Settings$DeviceAdminSettingsActivity"> |
| 1373 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | ca6d86c | 2018-06-14 12:52:06 -0700 | [diff] [blame] | 1374 | android:value="com.android.settings.applications.specialaccess.deviceadmin.DeviceAdminSettings" /> |
Amith Yamasani | af92528 | 2011-11-10 15:28:59 -0800 | [diff] [blame] | 1375 | </activity-alias> |
| 1376 | |
Fan Zhang | ca6d86c | 2018-06-14 12:52:06 -0700 | [diff] [blame] | 1377 | <activity android:name=".applications.specialaccess.deviceadmin.DeviceAdminAdd" |
Michael Wachenschwanz | 35eef60 | 2019-04-25 16:07:39 -0700 | [diff] [blame] | 1378 | android:label="@string/device_admin_add_title" |
| 1379 | android:clearTaskOnLaunch="true"> |
Dianne Hackborn | 2842903 | 2010-01-25 18:56:17 -0800 | [diff] [blame] | 1380 | <intent-filter> |
| 1381 | <action android:name="android.app.action.ADD_DEVICE_ADMIN" /> |
| 1382 | <category android:name="android.intent.category.DEFAULT" /> |
| 1383 | </intent-filter> |
| 1384 | </activity> |
| 1385 | |
Michael Wachenschwanz | 35eef60 | 2019-04-25 16:07:39 -0700 | [diff] [blame] | 1386 | <activity android:name=".applications.specialaccess.deviceadmin.ProfileOwnerAdd" |
| 1387 | android:excludeFromRecents="true" |
| 1388 | android:theme="@style/Transparent" |
| 1389 | android:clearTaskOnLaunch="true"> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1390 | <intent-filter android:priority="1000"> |
| 1391 | <action android:name="android.app.action.SET_PROFILE_OWNER" /> |
| 1392 | <category android:name="android.intent.category.DEFAULT" /> |
| 1393 | </intent-filter> |
Michael Wachenschwanz | 35eef60 | 2019-04-25 16:07:39 -0700 | [diff] [blame] | 1394 | </activity> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1395 | |
| 1396 | <activity |
| 1397 | android:name="Settings$UsageAccessSettingsActivity" |
Fan Zhang | c7635e5 | 2019-03-04 14:27:08 -0800 | [diff] [blame] | 1398 | android:label="@string/usage_access_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1399 | <intent-filter android:priority="1"> |
| 1400 | <action android:name="android.settings.USAGE_ACCESS_SETTINGS" /> |
| 1401 | <category android:name="android.intent.category.DEFAULT" /> |
| 1402 | </intent-filter> |
Dianne Hackborn | b51253c | 2014-08-12 15:08:04 -0700 | [diff] [blame] | 1403 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 1404 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Raff Tsai | 613f15a | 2020-01-05 21:56:35 +0800 | [diff] [blame] | 1405 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1406 | android:value="true" /> |
Dianne Hackborn | b51253c | 2014-08-12 15:08:04 -0700 | [diff] [blame] | 1407 | </activity> |
| 1408 | |
Fan Zhang | 104ee2e | 2018-09-20 16:21:53 -0700 | [diff] [blame] | 1409 | <activity |
| 1410 | android:name="Settings$AppUsageAccessSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1411 | android:label="@string/usage_access_title"> |
Fan Zhang | 104ee2e | 2018-09-20 16:21:53 -0700 | [diff] [blame] | 1412 | <intent-filter> |
| 1413 | <action android:name="android.settings.USAGE_ACCESS_SETTINGS"/> |
| 1414 | <category android:name="android.intent.category.DEFAULT"/> |
| 1415 | <data android:scheme="package"/> |
| 1416 | </intent-filter> |
| 1417 | <meta-data |
| 1418 | android:name="com.android.settings.FRAGMENT_CLASS" |
| 1419 | android:value="com.android.settings.applications.UsageAccessDetails"/> |
| 1420 | </activity> |
| 1421 | |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 1422 | <activity android:name="Settings$IccLockSettingsActivity" |
Bonian Chen | cd1fd10 | 2020-02-10 02:38:25 +0800 | [diff] [blame] | 1423 | android:label="@string/sim_lock_settings"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1424 | <intent-filter> |
| 1425 | <action android:name="android.intent.action.MAIN" /> |
| 1426 | <category android:name="android.intent.category.DEFAULT" /> |
| 1427 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 1428 | </intent-filter> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 1429 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1430 | android:value="com.android.settings.IccLockSettings" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1431 | </activity> |
| 1432 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1433 | <activity |
| 1434 | android:name="Settings$AccessibilitySettingsActivity" |
| 1435 | android:label="@string/accessibility_settings" |
| 1436 | android:icon="@drawable/ic_homepage_accessibility" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1437 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1438 | <intent-filter android:priority="1"> |
| 1439 | <action android:name="android.settings.ACCESSIBILITY_SETTINGS" /> |
| 1440 | <category android:name="android.intent.category.DEFAULT" /> |
| 1441 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 1442 | <intent-filter android:priority="60"> |
svetoslavganov | a05d0dc | 2009-05-14 22:26:34 -0700 | [diff] [blame] | 1443 | <action android:name="android.intent.action.MAIN" /> |
Costin Manolache | 672b3c6 | 2011-07-21 10:38:15 -0700 | [diff] [blame] | 1444 | <category android:name="com.android.settings.SHORTCUT" /> |
svetoslavganov | a05d0dc | 2009-05-14 22:26:34 -0700 | [diff] [blame] | 1445 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1446 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Alan Viverette | 341ff66 | 2013-07-18 17:49:33 -0700 | [diff] [blame] | 1447 | android:value="com.android.settings.accessibility.AccessibilitySettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1448 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1449 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1450 | </activity> |
Michael Chan | 732c1da | 2010-04-06 14:49:30 -0700 | [diff] [blame] | 1451 | |
Jackal Guo | 2936551 | 2019-02-14 15:19:53 +0800 | [diff] [blame] | 1452 | <activity |
| 1453 | android:name="Settings$AccessibilityDetailsSettingsActivity" |
| 1454 | android:label="@string/accessibility_settings" |
| 1455 | android:permission="android.permission.OPEN_ACCESSIBILITY_DETAILS_SETTINGS"> |
| 1456 | <intent-filter android:priority="1"> |
| 1457 | <action android:name="android.settings.ACCESSIBILITY_DETAILS_SETTINGS" /> |
| 1458 | <category android:name="android.intent.category.DEFAULT" /> |
| 1459 | </intent-filter> |
| 1460 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1461 | android:value="com.android.settings.accessibility.AccessibilityDetailsSettingsFragment" /> |
| 1462 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1463 | android:value="true" /> |
| 1464 | </activity> |
| 1465 | |
Anna Galusza | b1795f5 | 2016-01-08 14:37:16 -0800 | [diff] [blame] | 1466 | <activity android:name=".accessibility.AccessibilitySettingsForSetupWizardActivity" |
Maurice Lam | f3c5b4d | 2017-06-08 20:17:18 -0700 | [diff] [blame] | 1467 | android:icon="@drawable/ic_accessibility_suggestion" |
Anna Galusza | b1795f5 | 2016-01-08 14:37:16 -0800 | [diff] [blame] | 1468 | android:label="@string/vision_settings_title" |
pastychang | 7539cf8 | 2019-03-29 11:17:04 +0800 | [diff] [blame] | 1469 | android:theme="@style/GlifV3Theme.Light"> |
Anna Galusza | b1795f5 | 2016-01-08 14:37:16 -0800 | [diff] [blame] | 1470 | <intent-filter android:priority="1"> |
| 1471 | <action android:name="android.settings.ACCESSIBILITY_SETTINGS_FOR_SUW" /> |
| 1472 | <category android:name="android.intent.category.DEFAULT" /> |
| 1473 | </intent-filter> |
cnchen | 7a83d51 | 2019-05-06 10:19:10 +0800 | [diff] [blame] | 1474 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1475 | android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" /> |
| 1476 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1477 | android:value="true" /> |
| 1478 | </activity> |
| 1479 | |
| 1480 | <activity-alias |
| 1481 | android:name=".FontSizeSettingsForSetupWizardActivity" |
| 1482 | android:exported="true" |
| 1483 | android:targetActivity=".accessibility.AccessibilitySettingsForSetupWizardActivity"> |
Maurice Lam | f3c5b4d | 2017-06-08 20:17:18 -0700 | [diff] [blame] | 1484 | <intent-filter> |
| 1485 | <action android:name="android.intent.action.MAIN" /> |
| 1486 | <category android:name="com.android.settings.suggested.category.DISPLAY_SETTINGS" /> |
| 1487 | </intent-filter> |
| 1488 | <meta-data android:name="com.android.settings.title" |
| 1489 | android:resource="@string/vision_settings_suggestion_title" /> |
Maurice Lam | 992fa86 | 2017-06-09 16:14:36 -0700 | [diff] [blame] | 1490 | <meta-data android:name="com.android.settings.icon_tintable" |
| 1491 | android:value="true" /> |
Anna Galusza | b1795f5 | 2016-01-08 14:37:16 -0800 | [diff] [blame] | 1492 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1493 | android:value="com.android.settings.accessibility.AccessibilitySettingsForSetupWizard" /> |
cnchen | 7a83d51 | 2019-05-06 10:19:10 +0800 | [diff] [blame] | 1494 | </activity-alias> |
Anna Galusza | b1795f5 | 2016-01-08 14:37:16 -0800 | [diff] [blame] | 1495 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1496 | <activity |
| 1497 | android:name="Settings$AccessibilityDaltonizerSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1498 | android:label="@string/accessibility_display_daltonizer_preference_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1499 | <intent-filter android:priority="1"> |
| 1500 | <action android:name="com.android.settings.ACCESSIBILITY_COLOR_SPACE_SETTINGS" /> |
| 1501 | <category android:name="android.intent.category.DEFAULT" /> |
| 1502 | </intent-filter> |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 1503 | <intent-filter> |
| 1504 | <action android:name="android.intent.action.MAIN" /> |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 1505 | <category android:name="android.intent.category.DEFAULT" /> |
| 1506 | </intent-filter> |
| 1507 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1508 | android:value="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1509 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1510 | android:value="true" /> |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 1511 | </activity> |
| 1512 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1513 | <activity |
| 1514 | android:name="Settings$CaptioningSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1515 | android:label="@string/accessibility_captioning_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1516 | <intent-filter android:priority="1"> |
| 1517 | <action android:name="android.settings.CAPTIONING_SETTINGS" /> |
| 1518 | <category android:name="android.intent.category.DEFAULT" /> |
| 1519 | </intent-filter> |
Alan Viverette | cc0e782 | 2013-08-06 13:53:58 -0700 | [diff] [blame] | 1520 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Alan Viverette | 4098dba | 2013-12-04 17:19:24 -0800 | [diff] [blame] | 1521 | android:value="com.android.settings.accessibility.CaptionPropertiesFragment" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1522 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1523 | android:value="true" /> |
Alan Viverette | cc0e782 | 2013-08-06 13:53:58 -0700 | [diff] [blame] | 1524 | </activity> |
| 1525 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1526 | <activity |
Kevin Chang | 0e1f39f | 2019-05-31 15:14:47 +0800 | [diff] [blame] | 1527 | android:name=".SettingsTutorialDialogWrapperActivity" |
| 1528 | android:theme="@style/Theme.AlertDialog" |
| 1529 | android:exported="false"/> |
| 1530 | |
| 1531 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1532 | android:name="Settings$TextToSpeechSettingsActivity" |
Fan Zhang | bcd8a25 | 2019-04-29 13:35:20 -0700 | [diff] [blame] | 1533 | android:label="@string/tts_settings"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1534 | <intent-filter android:priority="1"> |
Jean-Michel Trivi | ed29a65 | 2009-06-05 18:37:29 -0700 | [diff] [blame] | 1535 | <action android:name="com.android.settings.TTS_SETTINGS" /> |
Dianne Hackborn | 116d85e | 2009-06-26 18:20:23 -0700 | [diff] [blame] | 1536 | <category android:name="android.intent.category.DEFAULT" /> |
Jean-Michel Trivi | ed29a65 | 2009-06-05 18:37:29 -0700 | [diff] [blame] | 1537 | </intent-filter> |
Gilles Debunne | ab189bd | 2011-07-06 13:10:16 -0700 | [diff] [blame] | 1538 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Narayan Kamath | fdd94d8 | 2011-11-04 16:12:27 +0000 | [diff] [blame] | 1539 | android:value="com.android.settings.tts.TextToSpeechSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1540 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1541 | android:value="true" /> |
Jean-Michel Trivi | ed29a65 | 2009-06-05 18:37:29 -0700 | [diff] [blame] | 1542 | </activity> |
| 1543 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1544 | <activity |
| 1545 | android:name="Settings$EnterprisePrivacySettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1546 | android:label="@string/enterprise_privacy_settings"> |
Bartosz Fabianowski | 0e4a1e5 | 2016-11-28 19:16:34 +0100 | [diff] [blame] | 1547 | <intent-filter> |
| 1548 | <action android:name="android.settings.ENTERPRISE_PRIVACY_SETTINGS" /> |
| 1549 | <category android:name="android.intent.category.DEFAULT" /> |
| 1550 | </intent-filter> |
Bartosz Fabianowski | 05061fc | 2016-11-14 12:04:49 +0100 | [diff] [blame] | 1551 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1552 | android:value="com.android.settings.enterprise.EnterprisePrivacySettings" /> |
| 1553 | </activity> |
| 1554 | |
Jim Miller | 9757e30 | 2010-12-17 18:23:23 -0800 | [diff] [blame] | 1555 | <!-- Lock screen settings --> |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1556 | <activity android:name=".password.ConfirmDeviceCredentialActivity" |
Amith Yamasani | 39fb062 | 2014-12-17 10:52:52 -0800 | [diff] [blame] | 1557 | android:exported="true" |
Mill Chen | 078af33 | 2019-04-04 15:39:27 -0700 | [diff] [blame] | 1558 | android:taskAffinity="com.android.settings.workmode" |
Kevin Chyn | b3ee231 | 2018-10-04 15:01:43 -0700 | [diff] [blame] | 1559 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1560 | <intent-filter android:priority="1"> |
Jim Miller | 75fe9e0 | 2014-08-13 14:52:52 -0700 | [diff] [blame] | 1561 | <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL" /> |
Adrian Roos | 5a9a3cd | 2017-03-30 18:02:25 -0700 | [diff] [blame] | 1562 | <action android:name="android.app.action.CONFIRM_FRP_CREDENTIAL" /> |
Jim Miller | 75fe9e0 | 2014-08-13 14:52:52 -0700 | [diff] [blame] | 1563 | <category android:name="android.intent.category.DEFAULT" /> |
| 1564 | </intent-filter> |
Jay Civelli | 09b5228 | 2014-07-10 17:27:07 -0700 | [diff] [blame] | 1565 | </activity> |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1566 | <!-- Activity alias for compatibility --> |
| 1567 | <activity-alias android:name=".ConfirmDeviceCredentialActivity" |
| 1568 | android:targetActivity=".password.ConfirmDeviceCredentialActivity" |
| 1569 | android:exported="true" /> |
Jay Civelli | 09b5228 | 2014-07-10 17:27:07 -0700 | [diff] [blame] | 1570 | |
Clara Bayarri | c5cde05 | 2015-10-22 17:24:43 +0100 | [diff] [blame] | 1571 | <!-- Note this must not be exported since it authenticates the given user --> |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1572 | <activity android:name=".password.ConfirmDeviceCredentialActivity$InternalActivity" |
Clara Bayarri | c5cde05 | 2015-10-22 17:24:43 +0100 | [diff] [blame] | 1573 | android:exported="false" |
| 1574 | android:permission="android.permission.MANAGE_USERS" |
Mill Chen | 078af33 | 2019-04-04 15:39:27 -0700 | [diff] [blame] | 1575 | android:taskAffinity="com.android.settings.workmode" |
Kevin Chyn | 127da9c | 2018-11-09 16:13:53 -0800 | [diff] [blame] | 1576 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Clara Bayarri | c5cde05 | 2015-10-22 17:24:43 +0100 | [diff] [blame] | 1577 | <intent-filter android:priority="1"> |
| 1578 | <action android:name="android.app.action.CONFIRM_DEVICE_CREDENTIAL_WITH_USER" /> |
| 1579 | <category android:name="android.intent.category.DEFAULT" /> |
| 1580 | </intent-filter> |
| 1581 | </activity> |
| 1582 | |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 1583 | <activity android:name=".SetupRedactionInterstitial" |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 1584 | android:enabled="false" |
| 1585 | android:exported="true" |
pastychang | 7961482 | 2019-01-03 10:12:54 +0800 | [diff] [blame] | 1586 | android:theme="@style/SudThemeGlif.DayNight" |
Maurice Lam | 43366f1 | 2016-08-05 16:57:59 -0700 | [diff] [blame] | 1587 | android:label="@string/lock_screen_notifications_interstitial_title" |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 1588 | android:icon="@drawable/ic_suggested_notifications"> |
| 1589 | <intent-filter> |
| 1590 | <action android:name="android.intent.action.MAIN" /> |
Maurice Lam | 4331a2e | 2017-06-07 20:59:51 -0700 | [diff] [blame] | 1591 | <category android:name="com.android.settings.suggested.category.LOCK_SCREEN_REDACTION" /> |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 1592 | </intent-filter> |
| 1593 | <meta-data android:name="com.android.settings.require_user_type" |
| 1594 | android:value="primary" /> |
| 1595 | <meta-data android:name="com.android.settings.title" |
| 1596 | android:resource="@string/notification_suggestion_title" /> |
| 1597 | <meta-data android:name="com.android.settings.summary" |
| 1598 | android:resource="@string/notification_suggestion_summary" /> |
Maurice Lam | 992fa86 | 2017-06-09 16:14:36 -0700 | [diff] [blame] | 1599 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
Udam Saini | dd05ab7 | 2016-03-21 17:35:08 -0700 | [diff] [blame] | 1600 | </activity> |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 1601 | |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame] | 1602 | <activity android:name=".notification.RedactionInterstitial" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1603 | android:theme="@style/GlifTheme.Light" /> |
Chris Wren | 51ae332 | 2014-08-28 15:45:31 -0400 | [diff] [blame] | 1604 | |
| 1605 | <activity android:name=".notification.RedactionSettingsStandalone" |
| 1606 | android:exported="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1607 | <intent-filter android:priority="1"> |
Chris Wren | 51ae332 | 2014-08-28 15:45:31 -0400 | [diff] [blame] | 1608 | <action android:name="android.settings.ACTION_APP_NOTIFICATION_REDACTION" /> |
| 1609 | <category android:name="android.intent.category.DEFAULT" /> |
| 1610 | </intent-filter> |
| 1611 | </activity> |
Jay Civelli | 09b5228 | 2014-07-10 17:27:07 -0700 | [diff] [blame] | 1612 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1613 | <activity android:name=".password.ConfirmLockPattern" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1614 | android:theme="@style/GlifTheme.Light"/> |
Michael Chan | 503c236 | 2009-12-08 22:18:23 -0800 | [diff] [blame] | 1615 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1616 | <activity android:name=".password.ConfirmLockPassword" |
Jorim Jaggi | ff41a9a | 2015-06-09 15:31:28 -0700 | [diff] [blame] | 1617 | android:windowSoftInputMode="stateHidden|adjustResize" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1618 | android:theme="@style/GlifTheme.Light"/> |
Jim Miller | 9757e30 | 2010-12-17 18:23:23 -0800 | [diff] [blame] | 1619 | |
Kevin Chyn | 22b4edd | 2018-07-30 19:20:01 -0700 | [diff] [blame] | 1620 | <activity android:name=".biometrics.face.FaceEnrollIntroduction" |
| 1621 | android:exported="false" |
| 1622 | android:screenOrientation="portrait"/> |
| 1623 | |
joshmccloskey | 0458262 | 2019-05-06 21:42:14 -0700 | [diff] [blame] | 1624 | <activity android:name=".biometrics.face.FaceEnrollEducation" |
| 1625 | android:exported="false" |
| 1626 | android:screenOrientation="portrait"/> |
| 1627 | |
Kevin Chyn | 22b4edd | 2018-07-30 19:20:01 -0700 | [diff] [blame] | 1628 | <activity android:name=".biometrics.face.FaceEnrollEnrolling" |
| 1629 | android:exported="false" |
| 1630 | android:screenOrientation="portrait"/> |
| 1631 | |
| 1632 | <activity android:name=".biometrics.face.FaceEnrollFinish" |
| 1633 | android:exported="false" |
| 1634 | android:screenOrientation="portrait"/> |
Kevin Chyn | 4882e87 | 2018-06-25 17:58:31 -0700 | [diff] [blame] | 1635 | |
Kevin Chyn | 5ab064f | 2019-04-12 15:19:12 -0700 | [diff] [blame] | 1636 | <!-- Must not be exported --> |
| 1637 | <activity android:name=".biometrics.BiometricEnrollActivity$InternalActivity" |
| 1638 | android:exported="false" |
| 1639 | android:theme="@style/GlifTheme.Light"/> |
| 1640 | |
Kevin Chyn | 66d09a4 | 2018-10-31 13:30:44 -0700 | [diff] [blame] | 1641 | <activity android:name=".biometrics.BiometricEnrollActivity" |
| 1642 | android:exported="true" |
| 1643 | android:theme="@style/GlifTheme.Light"> |
| 1644 | <intent-filter> |
| 1645 | <action android:name="android.settings.BIOMETRIC_ENROLL" /> |
| 1646 | <category android:name="android.intent.category.DEFAULT" /> |
| 1647 | </intent-filter> |
| 1648 | </activity> |
| 1649 | |
Kevin Chyn | 871e55f | 2018-06-25 16:50:52 -0700 | [diff] [blame] | 1650 | <activity android:name=".biometrics.fingerprint.FingerprintSettings" android:exported="false"/> |
| 1651 | <activity android:name=".biometrics.fingerprint.FingerprintEnrollFindSensor" android:exported="false"/> |
| 1652 | <activity android:name=".biometrics.fingerprint.FingerprintEnrollEnrolling" android:exported="false"/> |
| 1653 | <activity android:name=".biometrics.fingerprint.FingerprintEnrollFinish" android:exported="false"/> |
| 1654 | <activity android:name=".biometrics.fingerprint.FingerprintEnrollIntroduction" |
Kevin Chyn | 42ae10e | 2017-10-13 16:34:05 -0700 | [diff] [blame] | 1655 | android:exported="true" |
| 1656 | android:theme="@style/GlifTheme.Light"> |
| 1657 | <intent-filter> |
| 1658 | <action android:name="android.settings.FINGERPRINT_ENROLL" /> |
| 1659 | <category android:name="android.intent.category.DEFAULT" /> |
| 1660 | </intent-filter> |
| 1661 | </activity> |
Maurice Lam | 8d1f9c9 | 2015-07-09 16:38:37 -0700 | [diff] [blame] | 1662 | |
Kevin Chyn | 871e55f | 2018-06-25 16:50:52 -0700 | [diff] [blame] | 1663 | <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFindSensor" android:exported="false"/> |
| 1664 | <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollEnrolling" android:exported="false"/> |
| 1665 | <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollFinish" android:exported="false"/> |
| 1666 | <activity android:name=".biometrics.fingerprint.SetupFingerprintEnrollIntroduction" |
Maurice Lam | e1eaed0 | 2015-07-08 16:59:59 -0700 | [diff] [blame] | 1667 | android:exported="true" |
Maurice Lam | 8d1f9c9 | 2015-07-09 16:38:37 -0700 | [diff] [blame] | 1668 | android:permission="android.permission.MANAGE_FINGERPRINT" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1669 | android:theme="@style/GlifTheme.Light"> |
Maurice Lam | e1eaed0 | 2015-07-08 16:59:59 -0700 | [diff] [blame] | 1670 | <intent-filter> |
| 1671 | <action android:name="android.settings.FINGERPRINT_SETUP" /> |
| 1672 | <category android:name="android.intent.category.DEFAULT" /> |
| 1673 | </intent-filter> |
| 1674 | </activity> |
Jim Miller | 94d4bd9 | 2015-02-19 21:04:57 -0800 | [diff] [blame] | 1675 | |
Kevin Chyn | 871e55f | 2018-06-25 16:50:52 -0700 | [diff] [blame] | 1676 | <activity android:name=".biometrics.fingerprint.FingerprintSuggestionActivity" |
Maurice Lam | 34a181a | 2017-06-20 20:00:54 -0700 | [diff] [blame] | 1677 | android:exported="true" |
| 1678 | android:permission="android.permission.MANAGE_FINGERPRINT" |
| 1679 | android:icon="@drawable/ic_suggestion_fingerprint" |
| 1680 | android:theme="@style/GlifTheme.Light"> |
Maurice Lam | 34a181a | 2017-06-20 20:00:54 -0700 | [diff] [blame] | 1681 | <meta-data android:name="com.android.settings.require_feature" |
| 1682 | android:value="android.hardware.fingerprint" /> |
| 1683 | <meta-data android:name="com.android.settings.title" |
| 1684 | android:resource="@string/suggestion_additional_fingerprints" /> |
| 1685 | <meta-data android:name="com.android.settings.summary" |
| 1686 | android:resource="@string/suggestion_additional_fingerprints_summary" /> |
Maurice Lam | 34a181a | 2017-06-20 20:00:54 -0700 | [diff] [blame] | 1687 | </activity> |
| 1688 | |
cnchen | d215999 | 2019-03-22 19:48:04 +0800 | [diff] [blame] | 1689 | <activity-alias android:name=".SetupFingerprintSuggestionActivity" |
| 1690 | android:enabled="false" |
| 1691 | android:exported="true" |
| 1692 | android:targetActivity=".biometrics.fingerprint.FingerprintSuggestionActivity"> |
| 1693 | <intent-filter> |
| 1694 | <action android:name="android.intent.action.MAIN" /> |
| 1695 | <category android:name="com.android.settings.suggested.category.FINGERPRINT_ENROLL" /> |
| 1696 | </intent-filter> |
| 1697 | <meta-data android:name="com.android.settings.require_feature" |
| 1698 | android:value="android.hardware.fingerprint" /> |
| 1699 | <meta-data android:name="com.android.settings.title" |
| 1700 | android:resource="@string/suggestion_additional_fingerprints" /> |
| 1701 | <meta-data android:name="com.android.settings.summary" |
| 1702 | android:resource="@string/suggestion_additional_fingerprints_summary" /> |
Cating Lin | 84e6a47 | 2019-04-24 09:25:55 +0800 | [diff] [blame] | 1703 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
cnchen | d215999 | 2019-03-22 19:48:04 +0800 | [diff] [blame] | 1704 | </activity-alias> |
| 1705 | |
Paul Lawrence | 2044404 | 2014-07-07 13:10:16 -0700 | [diff] [blame] | 1706 | <!-- Note this must not be exported since it returns the password in the intent --> |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1707 | <activity android:name=".password.ConfirmLockPattern$InternalActivity" |
Andres Morales | 02d5487 | 2015-04-14 11:33:45 -0700 | [diff] [blame] | 1708 | android:exported="false" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1709 | android:theme="@style/GlifTheme.Light"/> |
Paul Lawrence | 2044404 | 2014-07-07 13:10:16 -0700 | [diff] [blame] | 1710 | |
| 1711 | <!-- Note this must not be exported since it returns the password in the intent --> |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1712 | <activity android:name=".password.ConfirmLockPassword$InternalActivity" |
Paul Lawrence | 2044404 | 2014-07-07 13:10:16 -0700 | [diff] [blame] | 1713 | android:exported="false" |
Xiyuan Xia | 4a8edaf | 2015-05-20 14:26:15 -0700 | [diff] [blame] | 1714 | android:windowSoftInputMode="adjustResize" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1715 | android:theme="@style/GlifTheme.Light"/> |
Paul Lawrence | 2044404 | 2014-07-07 13:10:16 -0700 | [diff] [blame] | 1716 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1717 | <activity android:name=".password.SetupChooseLockGeneric" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1718 | android:theme="@style/GlifTheme.Light" |
Lucky Zhang | 36ec274 | 2014-12-05 18:20:27 -0800 | [diff] [blame] | 1719 | android:label="@string/lock_settings_picker_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1720 | <intent-filter android:priority="1"> |
Maurice Lam | 52c75ba | 2014-11-25 14:06:38 -0800 | [diff] [blame] | 1721 | <action android:name="com.android.settings.SETUP_LOCK_SCREEN" /> |
| 1722 | <category android:name="android.intent.category.DEFAULT" /> |
| 1723 | </intent-filter> |
| 1724 | </activity> |
| 1725 | |
Doris Ling | 069d293 | 2018-11-13 14:54:26 -0800 | [diff] [blame] | 1726 | <activity android:name=".password.SetupChooseLockGeneric$InternalActivity" |
| 1727 | android:theme="@style/GlifTheme.Light" |
| 1728 | android:exported="false" |
| 1729 | android:excludeFromRecents="true" /> |
| 1730 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1731 | <activity android:name=".password.ChooseLockGeneric" |
Steven Ross | b7a9e95 | 2011-10-03 10:06:44 -0400 | [diff] [blame] | 1732 | android:label="@string/lockpassword_choose_lock_generic_header" |
Steven Ng | 4fdcec7 | 2016-09-26 22:13:08 +0100 | [diff] [blame] | 1733 | android:excludeFromRecents="true" |
| 1734 | android:exported="false" /> |
| 1735 | |
| 1736 | <activity android:name=".password.SetNewPasswordActivity" |
| 1737 | android:theme="@android:style/Theme.NoDisplay" |
Steven Ross | b7a9e95 | 2011-10-03 10:06:44 -0400 | [diff] [blame] | 1738 | android:excludeFromRecents="true" > |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1739 | <intent-filter android:priority="1"> |
Dianne Hackborn | abc3dc6 | 2010-01-20 13:40:19 -0800 | [diff] [blame] | 1740 | <action android:name="android.app.action.SET_NEW_PASSWORD" /> |
Benjamin Franz | ae07b50 | 2016-01-08 17:16:19 +0000 | [diff] [blame] | 1741 | <action android:name="android.app.action.SET_NEW_PARENT_PROFILE_PASSWORD" /> |
Dianne Hackborn | abc3dc6 | 2010-01-20 13:40:19 -0800 | [diff] [blame] | 1742 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1743 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1744 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1745 | android:value="true" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1746 | </activity> |
| 1747 | |
Fan Zhang | 31f699c | 2017-09-28 17:17:44 -0700 | [diff] [blame] | 1748 | <activity android:name=".password.ScreenLockSuggestionActivity" |
Mill Chen | 7195800 | 2019-01-23 10:44:39 +0800 | [diff] [blame] | 1749 | android:icon="@drawable/ic_suggestion_security"> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1750 | <intent-filter android:priority="1"> |
| 1751 | <action android:name="android.intent.action.MAIN" /> |
Raff Tsai | 7c83463 | 2019-03-22 12:00:00 +0800 | [diff] [blame] | 1752 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1753 | </intent-filter> |
Raff Tsai | 7c83463 | 2019-03-22 12:00:00 +0800 | [diff] [blame] | 1754 | <meta-data android:name="com.android.settings.dismiss" android:value="14" /> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1755 | <meta-data android:name="com.android.settings.title" |
| 1756 | android:resource="@string/suggested_lock_settings_title" /> |
| 1757 | <meta-data android:name="com.android.settings.summary" |
| 1758 | android:resource="@string/suggested_lock_settings_summary" /> |
Maurice Lam | 992fa86 | 2017-06-09 16:14:36 -0700 | [diff] [blame] | 1759 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
Udam Saini | 62a7280 | 2016-01-28 11:09:29 -0800 | [diff] [blame] | 1760 | </activity> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1761 | |
Kevin Chyn | 871e55f | 2018-06-25 16:50:52 -0700 | [diff] [blame] | 1762 | <activity android:name=".biometrics.fingerprint.FingerprintEnrollSuggestionActivity" |
Udam Saini | aafbba1 | 2016-02-02 10:33:40 -0800 | [diff] [blame] | 1763 | android:icon="@drawable/ic_suggestion_fingerprint"> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1764 | <intent-filter android:priority="2"> |
| 1765 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | af91c1f | 2017-06-03 15:24:11 -0700 | [diff] [blame] | 1766 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1767 | </intent-filter> |
Raff Tsai | 165708d | 2019-03-21 15:46:48 +0800 | [diff] [blame] | 1768 | <meta-data android:name="com.android.settings.dismiss" android:value="14" /> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1769 | <meta-data android:name="com.android.settings.require_feature" |
| 1770 | android:value="android.hardware.fingerprint" /> |
| 1771 | <meta-data android:name="com.android.settings.title" |
TreeHugger Robot | a4e3c14 | 2016-07-12 21:42:03 +0000 | [diff] [blame] | 1772 | android:resource="@string/suggested_fingerprint_lock_settings_title" /> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1773 | <meta-data android:name="com.android.settings.summary" |
Udam Saini | aafbba1 | 2016-02-02 10:33:40 -0800 | [diff] [blame] | 1774 | android:resource="@string/suggested_fingerprint_lock_settings_summary" /> |
Doris Ling | ea85c0a | 2018-04-30 14:08:55 -0700 | [diff] [blame] | 1775 | <meta-data android:name="com.android.settings.icon_tintable" android:value="true" /> |
Udam Saini | 62a7280 | 2016-01-28 11:09:29 -0800 | [diff] [blame] | 1776 | </activity> |
Udam Saini | 7ad4a17 | 2016-01-25 11:22:33 -0800 | [diff] [blame] | 1777 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1778 | <activity android:name=".password.ChooseLockGeneric$InternalActivity" |
| 1779 | android:exported="false" |
Amith Yamasani | 6602677 | 2013-09-25 14:05:33 -0700 | [diff] [blame] | 1780 | android:label="@string/lockpassword_choose_lock_generic_header" |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1781 | android:excludeFromRecents="true" /> |
Amith Yamasani | 6602677 | 2013-09-25 14:05:33 -0700 | [diff] [blame] | 1782 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1783 | <activity android:name=".password.SetupChooseLockPattern" |
Maurice Lam | 6b19fa9 | 2014-11-25 19:25:56 -0800 | [diff] [blame] | 1784 | android:exported="false" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1785 | android:theme="@style/GlifTheme.Light" /> |
Maurice Lam | 6b19fa9 | 2014-11-25 19:25:56 -0800 | [diff] [blame] | 1786 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1787 | <activity android:name=".password.ChooseLockPattern" |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame] | 1788 | android:exported="false" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1789 | android:theme="@style/GlifTheme.Light" /> |
Dianne Hackborn | abc3dc6 | 2010-01-20 13:40:19 -0800 | [diff] [blame] | 1790 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1791 | <activity android:name=".password.SetupChooseLockPassword" |
Maurice Lam | 6b19fa9 | 2014-11-25 19:25:56 -0800 | [diff] [blame] | 1792 | android:exported="false" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1793 | android:theme="@style/GlifTheme.Light" |
Maurice Lam | 6b19fa9 | 2014-11-25 19:25:56 -0800 | [diff] [blame] | 1794 | android:windowSoftInputMode="stateVisible|adjustResize" /> |
| 1795 | |
Maurice Lam | 2eb170c | 2017-04-28 16:18:47 -0700 | [diff] [blame] | 1796 | <activity android:name=".password.ChooseLockPassword" |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame] | 1797 | android:exported="false" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1798 | android:theme="@style/GlifTheme.Light" |
Jim Miller | 165bf2f | 2011-01-26 16:10:26 -0800 | [diff] [blame] | 1799 | android:windowSoftInputMode="stateVisible|adjustResize"/> |
Jim Miller | 00d2476 | 2009-12-22 19:04:57 -0800 | [diff] [blame] | 1800 | |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 1801 | <activity android:name=".SetupEncryptionInterstitial" |
Maurice Lam | 46a194b | 2016-05-24 20:03:08 -0700 | [diff] [blame] | 1802 | android:label="@string/encryption_interstitial_header" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1803 | android:theme="@style/GlifTheme.Light"/> |
Maurice Lam | ecd2b7b | 2014-12-01 10:41:49 -0800 | [diff] [blame] | 1804 | |
Maurice Lam | d189ac5 | 2016-06-15 13:39:34 -0700 | [diff] [blame] | 1805 | <activity android:name=".EncryptionInterstitial" |
Maurice Lam | e0e81b6 | 2017-04-05 12:10:37 -0700 | [diff] [blame] | 1806 | android:theme="@style/GlifTheme.Light" /> |
Jim Miller | 46c7f6d | 2014-10-13 18:15:17 -0700 | [diff] [blame] | 1807 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1808 | <activity |
| 1809 | android:name=".Settings$StorageDashboardActivity" |
| 1810 | android:label="@string/storage_settings" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1811 | android:icon="@drawable/ic_homepage_storage"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1812 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1813 | <action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" /> |
| 1814 | <action android:name="android.settings.MEMORY_CARD_SETTINGS" /> |
| 1815 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1816 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 1817 | <intent-filter android:priority="50"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1818 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 1819 | <category android:name="com.android.settings.SHORTCUT" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1820 | </intent-filter> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1821 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Jeff Sharkey | 42833b2 | 2015-04-11 21:27:33 -0700 | [diff] [blame] | 1822 | android:value="com.android.settings.deviceinfo.StorageSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 1823 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1824 | android:value="true" /> |
Amith Yamasani | 5203bdf | 2010-11-04 09:59:44 -0700 | [diff] [blame] | 1825 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1826 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1827 | <activity |
| 1828 | android:name="Settings$PrivateVolumeSettingsActivity" |
| 1829 | android:label="@string/storage_settings_title"> |
Jeff Sharkey | e77f068 | 2015-04-29 11:24:57 -0700 | [diff] [blame] | 1830 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1831 | android:value="com.android.settings.deviceinfo.PrivateVolumeSettings" /> |
Jeff Sharkey | e77f068 | 2015-04-29 11:24:57 -0700 | [diff] [blame] | 1832 | </activity> |
| 1833 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1834 | <activity |
| 1835 | android:name="Settings$PublicVolumeSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1836 | android:label="@string/storage_settings_title"> |
Jeff Sharkey | 42833b2 | 2015-04-11 21:27:33 -0700 | [diff] [blame] | 1837 | <intent-filter> |
| 1838 | <action android:name="android.provider.action.DOCUMENT_ROOT_SETTINGS" /> |
| 1839 | <category android:name="android.intent.category.DEFAULT" /> |
| 1840 | <data |
| 1841 | android:scheme="content" |
| 1842 | android:host="com.android.externalstorage.documents" |
| 1843 | android:mimeType="vnd.android.document/root" /> |
| 1844 | </intent-filter> |
| 1845 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1846 | android:value="com.android.settings.deviceinfo.PublicVolumeSettings" /> |
Jeff Sharkey | 42833b2 | 2015-04-11 21:27:33 -0700 | [diff] [blame] | 1847 | </activity> |
Vasu Nori | 2180974 | 2011-01-25 13:39:16 -0800 | [diff] [blame] | 1848 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1849 | <activity |
| 1850 | android:name="Settings$PrivateVolumeForgetActivity" |
| 1851 | android:label="@string/storage_settings_title" |
| 1852 | android:exported="true" |
| 1853 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"> |
Jeff Sharkey | a16257d | 2015-04-28 13:41:01 -0700 | [diff] [blame] | 1854 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1855 | android:value="com.android.settings.deviceinfo.PrivateVolumeForget" /> |
Jeff Sharkey | a16257d | 2015-04-28 13:41:01 -0700 | [diff] [blame] | 1856 | </activity> |
| 1857 | |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1858 | <!-- Exported for SystemUI to launch into --> |
| 1859 | <activity android:name=".deviceinfo.StorageWizardInit" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1860 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | 2949a4a | 2015-04-14 16:44:34 -0700 | [diff] [blame] | 1861 | android:exported="true" |
| 1862 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1863 | <activity android:name=".deviceinfo.StorageWizardFormatProgress" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1864 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1865 | android:exported="false" /> |
Jeff Sharkey | 2af67a9 | 2018-04-01 18:25:54 -0600 | [diff] [blame] | 1866 | <activity android:name=".deviceinfo.StorageWizardFormatSlow" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1867 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1868 | android:exported="false" /> |
| 1869 | <activity android:name=".deviceinfo.StorageWizardMigrateConfirm" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1870 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1871 | android:exported="false" /> |
| 1872 | <activity android:name=".deviceinfo.StorageWizardMigrateProgress" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1873 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | e77f068 | 2015-04-29 11:24:57 -0700 | [diff] [blame] | 1874 | android:exported="true" |
| 1875 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1876 | <activity android:name=".deviceinfo.StorageWizardReady" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1877 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | e77f068 | 2015-04-29 11:24:57 -0700 | [diff] [blame] | 1878 | android:exported="true" |
| 1879 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1880 | |
| 1881 | <activity android:name=".deviceinfo.StorageWizardMoveConfirm" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1882 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1883 | android:exported="false" /> |
| 1884 | <activity android:name=".deviceinfo.StorageWizardMoveProgress" |
Jeff Sharkey | ccabf4e | 2018-05-01 14:53:25 -0600 | [diff] [blame] | 1885 | android:theme="@style/GlifV3Theme.Light" |
Jeff Sharkey | e77f068 | 2015-04-29 11:24:57 -0700 | [diff] [blame] | 1886 | android:exported="true" |
| 1887 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
Jeff Sharkey | 9463599 | 2015-04-13 14:15:26 -0700 | [diff] [blame] | 1888 | |
Jeff Sharkey | 2949a4a | 2015-04-14 16:44:34 -0700 | [diff] [blame] | 1889 | <!-- Exported for SystemUI to trigger --> |
| 1890 | <receiver android:name=".deviceinfo.StorageUnmountReceiver" |
| 1891 | android:exported="true" |
| 1892 | android:permission="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
| 1893 | |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 1894 | <activity android:name="Settings$ApnEditorActivity" |
Junda Liu | 76ad635 | 2017-02-03 16:39:23 -0800 | [diff] [blame] | 1895 | android:configChanges="orientation|keyboardHidden|screenSize" |
Amith Yamasani | 34bd7e6 | 2013-06-07 10:19:55 -0700 | [diff] [blame] | 1896 | android:label="@string/apn_edit"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1897 | <intent-filter> |
| 1898 | <action android:name="android.intent.action.VIEW" /> |
| 1899 | <action android:name="android.intent.action.EDIT" /> |
| 1900 | <category android:name="android.intent.category.DEFAULT" /> |
| 1901 | <data android:mimeType="vnd.android.cursor.item/telephony-carrier" /> |
| 1902 | </intent-filter> |
| 1903 | |
| 1904 | <intent-filter> |
| 1905 | <action android:name="android.intent.action.INSERT" /> |
| 1906 | <category android:name="android.intent.category.DEFAULT" /> |
| 1907 | <data android:mimeType="vnd.android.cursor.dir/telephony-carrier" /> |
| 1908 | </intent-filter> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 1909 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Pengquan Meng | 7a1c93d | 2018-04-02 16:41:54 -0700 | [diff] [blame] | 1910 | android:value="com.android.settings.network.ApnEditor" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1911 | </activity> |
| 1912 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1913 | <activity |
| 1914 | android:name="Settings$DevelopmentSettingsDashboardActivity" |
| 1915 | android:label="@string/development_settings_title" |
| 1916 | android:icon="@drawable/ic_settings_development" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1917 | android:enabled="false"> |
Fan Zhang | 4c26da9 | 2017-09-08 15:29:54 -0700 | [diff] [blame] | 1918 | <intent-filter android:priority="1"> |
| 1919 | <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" /> |
| 1920 | <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" /> |
| 1921 | <category android:name="android.intent.category.DEFAULT" /> |
| 1922 | </intent-filter> |
Fan Zhang | 9980096 | 2018-08-08 11:12:03 -0700 | [diff] [blame] | 1923 | <intent-filter> |
Fan Zhang | 4c26da9 | 2017-09-08 15:29:54 -0700 | [diff] [blame] | 1924 | <action android:name="com.android.settings.action.SETTINGS" /> |
| 1925 | </intent-filter> |
Fan Zhang | 9980096 | 2018-08-08 11:12:03 -0700 | [diff] [blame] | 1926 | <meta-data android:name="com.android.settings.order" android:value="-40"/> |
Fan Zhang | 4c26da9 | 2017-09-08 15:29:54 -0700 | [diff] [blame] | 1927 | <meta-data android:name="com.android.settings.category" |
| 1928 | android:value="com.android.settings.category.ia.system" /> |
| 1929 | <meta-data android:name="com.android.settings.summary" |
| 1930 | android:resource="@string/summary_empty"/> |
| 1931 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1932 | android:value="com.android.settings.development.DevelopmentSettingsDashboardFragment" /> |
| 1933 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 1934 | android:value="true" /> |
| 1935 | </activity> |
| 1936 | |
Fan Zhang | 6359a19 | 2017-05-11 16:04:09 -0700 | [diff] [blame] | 1937 | <!-- The opposite of DevelopmentSettingsActivity, it's no-op and only enabled when the real |
| 1938 | activity is disabled to be CTS compliant. --> |
| 1939 | <activity |
| 1940 | android:name=".development.DevelopmentSettingsDisabledActivity" |
| 1941 | android:icon="@drawable/ic_settings_development" |
| 1942 | android:label="@string/development_settings_title" |
Fan Zhang | 7373ec0 | 2018-08-14 13:25:47 -0700 | [diff] [blame] | 1943 | android:excludeFromRecents="true" |
| 1944 | android:theme="@style/Transparent"> |
Fan Zhang | 6359a19 | 2017-05-11 16:04:09 -0700 | [diff] [blame] | 1945 | <intent-filter android:priority="-1"> |
| 1946 | <action android:name="android.settings.APPLICATION_DEVELOPMENT_SETTINGS" /> |
| 1947 | <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" /> |
| 1948 | <category android:name="android.intent.category.DEFAULT" /> |
| 1949 | </intent-filter> |
| 1950 | </activity> |
| 1951 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1952 | <activity |
| 1953 | android:name="Settings$PrintSettingsActivity" |
| 1954 | android:label="@string/print_settings" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1955 | android:icon="@drawable/ic_settings_print"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1956 | <intent-filter android:priority="1"> |
| 1957 | <action android:name="android.settings.ACTION_PRINT_SETTINGS" /> |
| 1958 | <category android:name="android.intent.category.DEFAULT" /> |
| 1959 | </intent-filter> |
Svetoslav Ganov | 74648ac | 2013-09-04 23:52:28 -0700 | [diff] [blame] | 1960 | <intent-filter> |
| 1961 | <action android:name="android.intent.action.MAIN" /> |
Svetoslav Ganov | 74648ac | 2013-09-04 23:52:28 -0700 | [diff] [blame] | 1962 | <category android:name="android.intent.category.DEFAULT" /> |
| 1963 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 1964 | </intent-filter> |
| 1965 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1966 | android:value="com.android.settings.print.PrintSettingsFragment" /> |
Svetoslav Ganov | 74648ac | 2013-09-04 23:52:28 -0700 | [diff] [blame] | 1967 | </activity> |
| 1968 | |
Svetoslav | d9f156d | 2013-10-09 21:59:04 -0700 | [diff] [blame] | 1969 | <activity android:name="Settings$PrintJobSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 1970 | android:label="@string/print_print_job"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 1971 | <intent-filter android:priority="1"> |
Svetoslav | d9f156d | 2013-10-09 21:59:04 -0700 | [diff] [blame] | 1972 | <action android:name="android.settings.ACTION_PRINT_SETTINGS" /> |
| 1973 | <category android:name="android.intent.category.DEFAULT" /> |
| 1974 | <data android:scheme="printjob" android:pathPattern="*" /> |
| 1975 | </intent-filter> |
| 1976 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 1977 | android:value="com.android.settings.print.PrintJobSettingsFragment" /> |
Svetoslav | d9f156d | 2013-10-09 21:59:04 -0700 | [diff] [blame] | 1978 | </activity> |
| 1979 | |
Fan Zhang | 2907f86 | 2017-03-17 15:05:14 -0700 | [diff] [blame] | 1980 | <activity android:name=".development.AppPicker" |
| 1981 | android:label="@string/select_application" |
| 1982 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 1983 | |
Howard Chen | d5f3a0c | 2019-08-29 17:31:05 +0800 | [diff] [blame] | 1984 | <activity android:name=".development.DSULoader" |
| 1985 | android:label="Select DSU Package" |
| 1986 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" /> |
Howard Chen | 60acb51 | 2019-12-02 15:34:58 +0800 | [diff] [blame] | 1987 | <activity android:name=".development.DSUTermsOfServiceActivity" |
| 1988 | android:label="Terms of Service" |
| 1989 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog" /> |
Howard Chen | d5f3a0c | 2019-08-29 17:31:05 +0800 | [diff] [blame] | 1990 | |
Gustav Sennton | 5b59628 | 2017-02-03 16:19:02 +0000 | [diff] [blame] | 1991 | <activity android:name="Settings$WebViewAppPickerActivity" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 1992 | android:label="@string/select_webview_provider_dialog_title" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1993 | |
Paul Chang | 6ae4c4d | 2019-11-28 22:38:49 +0800 | [diff] [blame] | 1994 | <activity android:name="Settings$BugReportHandlerPickerActivity" |
| 1995 | android:label="@string/bug_report_handler_title" |
| 1996 | android:exported="true" |
| 1997 | android:excludeFromRecents="true"> |
| 1998 | <intent-filter> |
| 1999 | <action android:name="android.settings.BUGREPORT_HANDLER_SETTINGS" /> |
| 2000 | <category android:name="android.intent.category.DEFAULT" /> |
| 2001 | </intent-filter> |
| 2002 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2003 | android:value="com.android.settings.bugreporthandler.BugReportHandlerPicker" /> |
| 2004 | </activity> |
| 2005 | |
Jaikumar Ganesh | 3a76bca | 2009-07-16 18:41:58 -0700 | [diff] [blame] | 2006 | <activity android:name=".bluetooth.BluetoothPairingDialog" |
Michael Chan | 684736a | 2009-09-01 18:51:04 -0700 | [diff] [blame] | 2007 | android:excludeFromRecents="true" |
Antony Sargent | 4d7df06 | 2017-07-12 17:29:10 -0700 | [diff] [blame] | 2008 | android:windowSoftInputMode="stateVisible|adjustResize" |
jackqdyulei | 27f62fd | 2019-02-22 15:31:35 -0800 | [diff] [blame] | 2009 | android:theme="@style/Theme.AlertDialog" |
| 2010 | android:taskAffinity=".bluetooth.BluetoothPairingDialog"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2011 | <intent-filter android:priority="1"> |
Nick Pelly | 5ddbd94 | 2009-09-11 11:41:59 -0700 | [diff] [blame] | 2012 | <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2013 | <category android:name="android.intent.category.DEFAULT" /> |
| 2014 | </intent-filter> |
| 2015 | </activity> |
| 2016 | |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2017 | <activity android:name=".bluetooth.RequestPermissionActivity" |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2018 | android:excludeFromRecents="true" |
| 2019 | android:permission="android.permission.BLUETOOTH" |
Fan Zhang | a122be1 | 2018-07-16 16:28:37 -0700 | [diff] [blame] | 2020 | android:theme="@style/Theme.BluetoothPermission"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2021 | <intent-filter android:priority="1"> |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2022 | <action android:name="android.bluetooth.adapter.action.REQUEST_DISCOVERABLE" /> |
| 2023 | <action android:name="android.bluetooth.adapter.action.REQUEST_ENABLE" /> |
Svetoslav Ganov | b06766f | 2016-07-22 20:08:41 -0700 | [diff] [blame] | 2024 | <action android:name="android.bluetooth.adapter.action.REQUEST_DISABLE" /> |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2025 | <category android:name="android.intent.category.DEFAULT" /> |
| 2026 | </intent-filter> |
| 2027 | </activity> |
| 2028 | |
Irfan Sheriff | 50f341d | 2013-03-18 13:11:47 -0700 | [diff] [blame] | 2029 | <activity android:name=".wifi.WifiScanModeActivity" |
| 2030 | android:excludeFromRecents="true" |
| 2031 | android:theme="@style/Transparent"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2032 | <intent-filter android:priority="1"> |
Irfan Sheriff | 50f341d | 2013-03-18 13:11:47 -0700 | [diff] [blame] | 2033 | <action android:name="android.net.wifi.action.REQUEST_SCAN_ALWAYS_AVAILABLE" /> |
| 2034 | <category android:name="android.intent.category.DEFAULT" /> |
| 2035 | </intent-filter> |
| 2036 | </activity> |
| 2037 | |
Jerry Zhang | d18d6f1 | 2018-01-11 16:47:14 -0800 | [diff] [blame] | 2038 | <activity android:name=".Settings$UsbDetailsActivity" |
| 2039 | android:excludeFromRecents="true" |
| 2040 | android:permission="android.permission.MANAGE_USB" |
| 2041 | android:exported="true"> |
| 2042 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2043 | android:value="com.android.settings.connecteddevice.usb.UsbDetailsFragment"/> |
| 2044 | </activity> |
| 2045 | |
Michal Karpinski | 707f42f | 2016-02-25 17:29:43 +0000 | [diff] [blame] | 2046 | <activity android:name=".RemoteBugreportActivity" |
| 2047 | android:excludeFromRecents="true" |
| 2048 | android:exported="true" |
| 2049 | android:permission="android.permission.DUMP" |
tmfang | 5ade2f1 | 2018-07-30 13:49:43 +0800 | [diff] [blame] | 2050 | android:theme="@style/Theme.AlertDialog"> |
Michal Karpinski | 707f42f | 2016-02-25 17:29:43 +0000 | [diff] [blame] | 2051 | <intent-filter> |
| 2052 | <action android:name="android.settings.SHOW_REMOTE_BUGREPORT_DIALOG" /> |
| 2053 | <category android:name="android.intent.category.DEFAULT" /> |
| 2054 | </intent-filter> |
| 2055 | </activity> |
| 2056 | |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2057 | <activity android:name=".bluetooth.RequestPermissionHelperActivity" |
| 2058 | android:label="@string/bluetooth_pairing_request" |
| 2059 | android:excludeFromRecents="true" |
| 2060 | android:permission="android.permission.BLUETOOTH" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2061 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Michael Chan | e1089ad | 2009-09-26 06:16:17 -0700 | [diff] [blame] | 2062 | </activity> |
| 2063 | |
Marie Janssen | d06d83c | 2017-02-14 18:49:17 -0800 | [diff] [blame] | 2064 | <service android:name=".bluetooth.BluetoothPairingService" /> |
| 2065 | |
Jaikumar Ganesh | 3a76bca | 2009-07-16 18:41:58 -0700 | [diff] [blame] | 2066 | <receiver android:name=".bluetooth.BluetoothPairingRequest"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2067 | <intent-filter> |
Nick Pelly | 5ddbd94 | 2009-09-11 11:41:59 -0700 | [diff] [blame] | 2068 | <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2069 | </intent-filter> |
| 2070 | </receiver> |
| 2071 | |
Jaikumar Ganesh | e0b01ad | 2011-09-07 17:19:19 -0700 | [diff] [blame] | 2072 | <receiver android:name=".bluetooth.BluetoothPermissionRequest" |
| 2073 | android:permission="android.permission.BLUETOOTH_ADMIN"> |
Matthew Xie | dbed120 | 2011-06-27 18:21:25 -0700 | [diff] [blame] | 2074 | <intent-filter> |
| 2075 | <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" /> |
| 2076 | <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" /> |
| 2077 | </intent-filter> |
| 2078 | </receiver> |
| 2079 | |
| 2080 | <activity android:name=".bluetooth.BluetoothPermissionActivity" |
| 2081 | android:label="@string/bluetooth_connection_permission_request" |
| 2082 | android:excludeFromRecents="true" |
| 2083 | android:permission="android.permission.BLUETOOTH_ADMIN" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2084 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2085 | <intent-filter android:priority="1"> |
Matthew Xie | dbed120 | 2011-06-27 18:21:25 -0700 | [diff] [blame] | 2086 | <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REQUEST" /> |
| 2087 | <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_CANCEL" /> |
| 2088 | <category android:name="android.intent.category.DEFAULT" /> |
| 2089 | </intent-filter> |
| 2090 | </activity> |
| 2091 | |
Joe Onorato | de560372 | 2009-03-24 17:49:03 -0700 | [diff] [blame] | 2092 | <activity android:name="ActivityPicker" |
| 2093 | android:label="@string/activity_picker_label" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2094 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert" |
Dianne Hackborn | ec54997 | 2009-09-23 22:24:22 -0700 | [diff] [blame] | 2095 | android:finishOnCloseSystemDialogs="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2096 | <intent-filter android:priority="1"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2097 | <action android:name="android.intent.action.PICK_ACTIVITY" /> |
| 2098 | <category android:name="android.intent.category.DEFAULT" /> |
| 2099 | </intent-filter> |
| 2100 | </activity> |
| 2101 | |
Jeff Hamilton | 3d670de | 2011-09-21 16:44:36 -0500 | [diff] [blame] | 2102 | <!-- NFC settings --> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2103 | <activity |
| 2104 | android:name="Settings$AndroidBeamSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2105 | android:label="@string/android_beam_settings_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2106 | <intent-filter android:priority="1"> |
| 2107 | <action android:name="android.settings.NFCSHARING_SETTINGS" /> |
| 2108 | <category android:name="android.intent.category.DEFAULT" /> |
| 2109 | </intent-filter> |
Jeff Hamilton | 3d670de | 2011-09-21 16:44:36 -0500 | [diff] [blame] | 2110 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Nick Pelly | e0eedf7 | 2011-10-31 14:11:29 -0700 | [diff] [blame] | 2111 | android:value="com.android.settings.nfc.AndroidBeam" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2112 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2113 | android:value="true" /> |
Jeff Hamilton | 3d670de | 2011-09-21 16:44:36 -0500 | [diff] [blame] | 2114 | </activity> |
| 2115 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2116 | <activity |
| 2117 | android:name="Settings$WifiDisplaySettingsActivity" |
| 2118 | android:label="@string/wifi_display_settings_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2119 | android:icon="@drawable/ic_cast_24dp"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2120 | <intent-filter android:priority="1"> |
Jeff Brown | ff0e81e | 2014-08-19 17:47:54 -0700 | [diff] [blame] | 2121 | <action android:name="android.settings.CAST_SETTINGS" /> |
Jeff Brown | 9e143f5 | 2012-09-19 20:46:07 -0700 | [diff] [blame] | 2122 | <category android:name="android.intent.category.DEFAULT" /> |
| 2123 | </intent-filter> |
| 2124 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2125 | android:value="com.android.settings.wfd.WifiDisplaySettings" /> |
| 2126 | </activity> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2127 | |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 2128 | <activity android:name="Settings$TestingSettingsActivity" android:label="@string/testing"> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 2129 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2130 | android:value="com.android.settings.TestingSettings" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2131 | </activity> |
| 2132 | |
Matthew Fritze | 626a21b | 2016-08-17 11:52:39 -0700 | [diff] [blame] | 2133 | <receiver android:name=".TestingSettingsBroadcastReceiver"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2134 | <intent-filter> |
Grace Jia | 84da1e8 | 2020-02-14 15:53:28 -0800 | [diff] [blame^] | 2135 | <action android:name="android.telephony.action.SECRET_CODE" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2136 | <data android:scheme="android_secret_code" android:host="4636" /> |
| 2137 | </intent-filter> |
| 2138 | </receiver> |
| 2139 | |
The Android Open Source Project | 80a7a1d | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 2140 | <!-- Standard picker for widgets --> |
Joe Onorato | de560372 | 2009-03-24 17:49:03 -0700 | [diff] [blame] | 2141 | <activity android:name="AppWidgetPickActivity" |
| 2142 | android:label="@string/widget_picker_title" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2143 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert" |
Joe Onorato | 9bcc691 | 2011-01-10 12:55:57 -0800 | [diff] [blame] | 2144 | android:finishOnCloseSystemDialogs="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2145 | <intent-filter android:priority="1"> |
The Android Open Source Project | 80a7a1d | 2009-03-11 12:11:59 -0700 | [diff] [blame] | 2146 | <action android:name="android.appwidget.action.APPWIDGET_PICK" /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2147 | <category android:name="android.intent.category.DEFAULT" /> |
| 2148 | </intent-filter> |
| 2149 | </activity> |
| 2150 | |
Michael Jurka | c9029d9 | 2012-04-20 01:47:44 -0700 | [diff] [blame] | 2151 | <activity android:name="AllowBindAppWidgetActivity" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2152 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert" |
Michael Jurka | c9029d9 | 2012-04-20 01:47:44 -0700 | [diff] [blame] | 2153 | android:finishOnCloseSystemDialogs="true" |
| 2154 | android:excludeFromRecents="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2155 | <intent-filter android:priority="1"> |
Michael Jurka | c9029d9 | 2012-04-20 01:47:44 -0700 | [diff] [blame] | 2156 | <action android:name="android.appwidget.action.APPWIDGET_BIND" /> |
| 2157 | <category android:name="android.intent.category.DEFAULT" /> |
| 2158 | </intent-filter> |
| 2159 | </activity> |
| 2160 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2161 | <activity android:name="UsageStatsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2162 | android:label="@string/usage_stats_label"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 2163 | <intent-filter> |
| 2164 | <action android:name="android.intent.action.MAIN" /> |
| 2165 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 2166 | </intent-filter> |
| 2167 | </activity> |
| 2168 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2169 | <activity |
| 2170 | android:name="Settings$PowerUsageSummaryActivity" |
| 2171 | android:label="@string/power_usage_summary_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2172 | android:icon="@drawable/ic_settings_battery"> |
jackqdyulei | b96ccba | 2018-01-23 10:29:13 -0800 | [diff] [blame] | 2173 | <intent-filter android:priority="1"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2174 | <action android:name="android.intent.action.POWER_USAGE_SUMMARY" /> |
| 2175 | <category android:name="android.intent.category.DEFAULT" /> |
| 2176 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 2177 | <intent-filter android:priority="51"> |
jackqdyulei | b96ccba | 2018-01-23 10:29:13 -0800 | [diff] [blame] | 2178 | <action android:name="android.intent.action.MAIN" /> |
jackqdyulei | b96ccba | 2018-01-23 10:29:13 -0800 | [diff] [blame] | 2179 | <category android:name="com.android.settings.SHORTCUT" /> |
| 2180 | </intent-filter> |
Dianne Hackborn | 59a4860 | 2010-11-10 23:34:52 -0800 | [diff] [blame] | 2181 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2182 | android:value="com.android.settings.fuelgauge.PowerUsageSummary" /> |
Dianne Hackborn | cbaf6ce | 2010-07-23 00:23:21 -0700 | [diff] [blame] | 2183 | </activity> |
| 2184 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2185 | <activity |
| 2186 | android:name="Settings$BatterySaverSettingsActivity" |
| 2187 | android:label="@string/battery_saver" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2188 | android:icon="@drawable/ic_settings_battery"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2189 | <intent-filter android:priority="1"> |
| 2190 | <action android:name="android.settings.BATTERY_SAVER_SETTINGS" /> |
| 2191 | <category android:name="android.intent.category.DEFAULT" /> |
| 2192 | </intent-filter> |
John Spurlock | c7f8e8c | 2014-06-04 19:11:22 -0400 | [diff] [blame] | 2193 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 747f0e1 | 2018-03-01 09:49:34 -0800 | [diff] [blame] | 2194 | android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2195 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2196 | android:value="true" /> |
John Spurlock | c7f8e8c | 2014-06-04 19:11:22 -0400 | [diff] [blame] | 2197 | </activity> |
| 2198 | |
P.Y. Laligand | 1f403d5 | 2015-04-14 16:14:16 -0700 | [diff] [blame] | 2199 | <activity android:name=".fuelgauge.BatterySaverModeVoiceActivity" |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 2200 | android:label="@string/power_usage_summary_title" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2201 | android:theme="@*android:style/Theme.DeviceDefault.Light.Voice" |
Barnaby James | c55ea15 | 2015-04-13 14:33:53 -0700 | [diff] [blame] | 2202 | android:exported="true"> |
| 2203 | <intent-filter> |
| 2204 | <action android:name="android.settings.VOICE_CONTROL_BATTERY_SAVER_MODE" /> |
| 2205 | <category android:name="android.intent.category.DEFAULT" /> |
| 2206 | <category android:name="android.intent.category.VOICE" /> |
| 2207 | </intent-filter> |
| 2208 | </activity> |
| 2209 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2210 | <activity |
| 2211 | android:name="Settings$AccountSyncSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2212 | android:label="@string/account_sync_settings_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2213 | <intent-filter android:priority="1"> |
| 2214 | <action android:name="android.settings.ACCOUNT_SYNC_SETTINGS" /> |
| 2215 | <category android:name="android.intent.category.DEFAULT" /> |
| 2216 | </intent-filter> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2217 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2218 | android:value="com.android.settings.accounts.AccountSyncSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2219 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2220 | android:value="true" /> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2221 | </activity> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2222 | <activity |
| 2223 | android:name="Settings$ManagedProfileSettingsActivity" |
Ricky Wai | bf94d09 | 2017-02-01 15:26:29 +0000 | [diff] [blame] | 2224 | android:label="@string/managed_profile_settings_title" |
Ricky Wai | bf94d09 | 2017-02-01 15:26:29 +0000 | [diff] [blame] | 2225 | android:permission="android.permission.MANAGE_USERS"> |
| 2226 | <intent-filter android:priority="1"> |
| 2227 | <action android:name="android.settings.MANAGED_PROFILE_SETTINGS" /> |
| 2228 | <category android:name="android.intent.category.DEFAULT" /> |
| 2229 | </intent-filter> |
| 2230 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2231 | android:value="com.android.settings.accounts.ManagedProfileSettings" /> |
| 2232 | </activity> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2233 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2234 | <activity |
| 2235 | android:name="com.android.settings.accounts.AddAccountSettings" |
Amith Yamasani | 21c2904 | 2012-10-02 15:16:21 -0700 | [diff] [blame] | 2236 | android:theme="@android:style/Theme.Translucent.NoTitleBar" |
Amith Yamasani | 7bb8f72 | 2011-06-02 18:05:40 -0700 | [diff] [blame] | 2237 | android:configChanges="orientation|keyboardHidden|screenSize" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2238 | android:label="@string/header_add_an_account"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2239 | <intent-filter android:priority="1"> |
| 2240 | <action android:name="android.settings.ADD_ACCOUNT_SETTINGS" /> |
| 2241 | <category android:name="android.intent.category.DEFAULT" /> |
| 2242 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2243 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2244 | android:value="true" /> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2245 | </activity> |
| 2246 | |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 2247 | <activity android:name="Settings$ChooseAccountActivity" |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2248 | android:label="@string/header_add_an_account" |
Fan Zhang | 92f1e94 | 2017-01-21 10:07:26 -0800 | [diff] [blame] | 2249 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 2250 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Emily Chuang | b279b1c | 2018-04-12 10:12:28 +0800 | [diff] [blame] | 2251 | android:value="com.android.settings.accounts.ChooseAccountFragment" /> |
Jason Monk | b7e4380 | 2016-06-06 16:01:58 -0400 | [diff] [blame] | 2252 | </activity> |
Jim Miller | 165bf2f | 2011-01-26 16:10:26 -0800 | [diff] [blame] | 2253 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 2254 | <activity android:name=".CryptKeeper" |
Fyodor Kupolov | 25f1f60 | 2015-08-25 10:16:07 -0700 | [diff] [blame] | 2255 | androidprv:systemUserOnly="true" |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 2256 | android:immersive="true" |
| 2257 | android:launchMode="singleTop" |
Dianne Hackborn | 140f6c6 | 2011-10-16 11:49:00 -0700 | [diff] [blame] | 2258 | android:excludeFromRecents="true" |
Paul Lawrence | 26abe64 | 2014-06-11 15:24:37 -0700 | [diff] [blame] | 2259 | android:theme="@style/Theme.CryptKeeper" |
Paul Lawrence | 5ab67c5 | 2014-05-14 13:57:06 -0700 | [diff] [blame] | 2260 | android:configChanges="mnc|mcc|keyboard|keyboardHidden|uiMode" |
Paul Lawrence | eca15e1 | 2014-05-23 08:46:34 -0700 | [diff] [blame] | 2261 | android:windowSoftInputMode="adjustResize" |
Paul Lawrence | a1092fe | 2015-06-08 11:00:50 -0700 | [diff] [blame] | 2262 | android:screenOrientation="nosensor" |
| 2263 | android:process=":CryptKeeper"> |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 2264 | <intent-filter android:priority="10"> |
| 2265 | <action android:name="android.intent.action.MAIN" /> |
| 2266 | <category android:name="android.intent.category.HOME" /> |
| 2267 | <category android:name="android.intent.category.DEFAULT" /> |
| 2268 | </intent-filter> |
| 2269 | </activity> |
Amith Yamasani | 43c6978 | 2010-12-01 09:04:36 -0800 | [diff] [blame] | 2270 | |
Jeff Sharkey | 9e9f7d1 | 2015-11-30 13:28:19 -0700 | [diff] [blame] | 2271 | <!-- Triggered when user-selected home app isn't encryption aware --> |
| 2272 | <activity android:name=".FallbackHome" |
| 2273 | android:excludeFromRecents="true" |
Fan Zhang | 49534b7 | 2017-06-22 15:04:41 -0700 | [diff] [blame] | 2274 | android:label="" |
Maurice Lam | 6e79c02 | 2016-07-15 18:11:54 -0700 | [diff] [blame] | 2275 | android:screenOrientation="nosensor" |
Louis Chang | 397cdd6 | 2019-06-27 09:57:54 +0800 | [diff] [blame] | 2276 | android:taskAffinity="com.android.settings.FallbackHome" |
Jeff Sharkey | e555a6f | 2016-02-23 20:48:01 -0700 | [diff] [blame] | 2277 | android:theme="@style/FallbackHome"> |
Xiaohui Chen | dbf3e15 | 2015-12-30 15:51:56 -0800 | [diff] [blame] | 2278 | <intent-filter android:priority="-1000"> |
Jeff Sharkey | 9e9f7d1 | 2015-11-30 13:28:19 -0700 | [diff] [blame] | 2279 | <action android:name="android.intent.action.MAIN" /> |
| 2280 | <category android:name="android.intent.category.HOME" /> |
| 2281 | <category android:name="android.intent.category.DEFAULT" /> |
| 2282 | </intent-filter> |
| 2283 | </activity> |
| 2284 | |
Vikram Aggarwal | 9f55ae2 | 2012-04-02 13:36:35 -0700 | [diff] [blame] | 2285 | <activity android:name=".CryptKeeper$FadeToBlack" |
Jason parks | f1dbf55 | 2011-01-24 16:19:28 -0600 | [diff] [blame] | 2286 | android:immersive="true" |
| 2287 | android:launchMode="singleTop" |
| 2288 | android:theme="@style/CryptKeeperBlankTheme" |
| 2289 | /> |
| 2290 | |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 2291 | <activity android:name=".CryptKeeperConfirm$Blank" |
| 2292 | android:immersive="true" |
| 2293 | android:launchMode="singleTop" |
| 2294 | android:theme="@style/CryptKeeperBlankTheme" |
| 2295 | /> |
| 2296 | |
Andy Stadler | 3da38a0 | 2011-01-21 13:38:45 -0800 | [diff] [blame] | 2297 | <!-- Pseudo-activity used to provide an intent-filter entry point to encryption settings --> |
| 2298 | <activity android:name="Settings$CryptKeeperSettingsActivity" |
Andy Stadler | 3da38a0 | 2011-01-21 13:38:45 -0800 | [diff] [blame] | 2299 | android:label="@string/crypt_keeper_encrypt_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2300 | <intent-filter android:priority="1"> |
| 2301 | <action android:name="android.app.action.START_ENCRYPTION" /> |
songkailun | 7d2a590 | 2017-09-29 09:42:05 +0800 | [diff] [blame] | 2302 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2303 | </intent-filter> |
Andy Stadler | 3da38a0 | 2011-01-21 13:38:45 -0800 | [diff] [blame] | 2304 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | c58a883 | 2017-11-01 17:59:53 -0700 | [diff] [blame] | 2305 | android:value="com.android.settings.security.CryptKeeperSettings" /> |
Andy Stadler | 3da38a0 | 2011-01-21 13:38:45 -0800 | [diff] [blame] | 2306 | </activity> |
| 2307 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2308 | <activity |
| 2309 | android:name="Settings$DataUsageSummaryActivity" |
| 2310 | android:label="@string/data_usage_summary_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2311 | android:icon="@drawable/ic_settings_data_usage"> |
Rohan Shah | ff5bd33 | 2018-03-21 17:16:39 -0700 | [diff] [blame] | 2312 | <intent-filter android:priority="1"> |
| 2313 | <action android:name="android.settings.DATA_USAGE_SETTINGS" /> |
| 2314 | <category android:name="android.intent.category.DEFAULT" /> |
| 2315 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 2316 | <intent-filter android:priority="3"> |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 2317 | <action android:name="android.intent.action.MAIN" /> |
Amith Yamasani | 7836e4a | 2011-09-19 13:25:52 -0700 | [diff] [blame] | 2318 | <category android:name="com.android.settings.SHORTCUT" /> |
Jeff Sharkey | dd6efe1 | 2011-06-15 10:31:41 -0700 | [diff] [blame] | 2319 | </intent-filter> |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 2320 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | cd21cb8 | 2018-06-11 09:28:02 -0700 | [diff] [blame] | 2321 | android:value="com.android.settings.datausage.DataUsageSummary" /> |
Jeff Sharkey | ab2d8d3 | 2011-05-30 16:19:56 -0700 | [diff] [blame] | 2322 | </activity> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2323 | <activity |
| 2324 | android:name="Settings$MobileDataUsageListActivity" |
Yanting Yang | 85713d0 | 2019-09-27 18:34:04 +0800 | [diff] [blame] | 2325 | android:label="@string/cellular_data_usage"> |
Malcolm Chen | 52584e9 | 2017-06-20 11:14:27 -0700 | [diff] [blame] | 2326 | <intent-filter android:priority="1"> |
| 2327 | <action android:name="android.settings.MOBILE_DATA_USAGE" /> |
Malcolm Chen | 6fef2fff | 2017-07-13 17:59:58 -0700 | [diff] [blame] | 2328 | <category android:name="android.intent.category.DEFAULT" /> |
Malcolm Chen | 52584e9 | 2017-06-20 11:14:27 -0700 | [diff] [blame] | 2329 | </intent-filter> |
| 2330 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Doris Ling | 282a0d9 | 2018-11-30 16:20:32 -0800 | [diff] [blame] | 2331 | android:value="com.android.settings.datausage.DataUsageList" /> |
Malcolm Chen | 52584e9 | 2017-06-20 11:14:27 -0700 | [diff] [blame] | 2332 | </activity> |
| 2333 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2334 | <activity |
| 2335 | android:name="Settings$DreamSettingsActivity" |
| 2336 | android:label="@string/screensaver_settings_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2337 | android:icon="@drawable/ic_settings_display"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2338 | <intent-filter android:priority="1"> |
| 2339 | <action android:name="android.settings.DREAM_SETTINGS" /> |
| 2340 | <category android:name="android.intent.category.DEFAULT" /> |
| 2341 | </intent-filter> |
Daniel Sandler | 7dee75c | 2012-11-27 22:41:30 -0500 | [diff] [blame] | 2342 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Evan Laird | 22315ad | 2017-07-18 16:37:42 -0400 | [diff] [blame] | 2343 | android:value="com.android.settings.dream.DreamSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2344 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2345 | android:value="true" /> |
Daniel Sandler | 7dee75c | 2012-11-27 22:41:30 -0500 | [diff] [blame] | 2346 | </activity> |
| 2347 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2348 | <activity |
| 2349 | android:name="Settings$UserSettingsActivity" |
| 2350 | android:label="@string/user_settings_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2351 | android:icon="@drawable/ic_settings_multiuser"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2352 | <intent-filter android:priority="1"> |
| 2353 | <action android:name="android.settings.USER_SETTINGS" /> |
| 2354 | <category android:name="android.intent.category.DEFAULT" /> |
| 2355 | </intent-filter> |
Fan Zhang | 9980096 | 2018-08-08 11:12:03 -0700 | [diff] [blame] | 2356 | <intent-filter> |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 2357 | <action android:name="com.android.settings.action.SETTINGS" /> |
| 2358 | </intent-filter> |
Fan Zhang | 9980096 | 2018-08-08 11:12:03 -0700 | [diff] [blame] | 2359 | <meta-data android:name="com.android.settings.order" android:value="-45"/> |
Jason Monk | 4da79e0 | 2015-09-10 10:54:36 -0400 | [diff] [blame] | 2360 | <meta-data android:name="com.android.settings.category" |
Raff Tsai | 9e3a9fd | 2019-10-01 17:06:26 +0800 | [diff] [blame] | 2361 | android:value="com.android.settings.category.ia.system" /> |
Raff Tsai | 6db277e | 2019-10-02 16:43:23 +0800 | [diff] [blame] | 2362 | <meta-data android:name="com.android.settings.summary_uri" |
| 2363 | android:value="content://com.android.settings.dashboard.SummaryProvider/user" /> |
Amith Yamasani | 233592b | 2013-03-01 17:05:23 -0800 | [diff] [blame] | 2364 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Raff Tsai | 9e3a9fd | 2019-10-01 17:06:26 +0800 | [diff] [blame] | 2365 | android:value="com.android.settings.users.UserSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2366 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
Raff Tsai | 9e3a9fd | 2019-10-01 17:06:26 +0800 | [diff] [blame] | 2367 | android:value="true" /> |
Amith Yamasani | 233592b | 2013-03-01 17:05:23 -0800 | [diff] [blame] | 2368 | </activity> |
| 2369 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2370 | <activity |
| 2371 | android:name="Settings$PaymentSettingsActivity" |
| 2372 | android:label="@string/nfc_payment_settings_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2373 | android:icon="@drawable/ic_settings_nfc_payment"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2374 | <intent-filter android:priority="1"> |
| 2375 | <action android:name="android.settings.NFC_PAYMENT_SETTINGS" /> |
| 2376 | <category android:name="android.intent.category.DEFAULT" /> |
| 2377 | </intent-filter> |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2378 | <intent-filter> |
| 2379 | <action android:name="android.intent.action.MAIN" /> |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2380 | <category android:name="android.intent.category.DEFAULT" /> |
| 2381 | </intent-filter> |
| 2382 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2383 | android:value="com.android.settings.nfc.PaymentSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2384 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2385 | android:value="true" /> |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2386 | </activity> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2387 | |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2388 | <activity android:name=".nfc.PaymentDefaultDialog" |
Martijn Coenen | da6c0ba | 2013-09-05 21:07:23 -0700 | [diff] [blame] | 2389 | android:label="@string/nfc_payment_set_default_label" |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2390 | android:excludeFromRecents="true" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2391 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2392 | <intent-filter android:priority="1"> |
Martijn Coenen | a73aa32 | 2013-08-30 12:57:42 -0700 | [diff] [blame] | 2393 | <action android:name="android.nfc.cardemulation.action.ACTION_CHANGE_DEFAULT" /> |
| 2394 | <category android:name="android.intent.category.DEFAULT" /> |
| 2395 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2396 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2397 | android:value="true" /> |
Martijn Coenen | 26515da | 2013-08-01 18:13:33 -0700 | [diff] [blame] | 2398 | </activity> |
| 2399 | |
Martijn Coenen | cbcc76e | 2015-06-05 21:28:17 +0200 | [diff] [blame] | 2400 | <activity android:name=".nfc.HowItWorks" |
| 2401 | android:label="@string/nfc_payment_settings_title" |
Martijn Coenen | cbcc76e | 2015-06-05 21:28:17 +0200 | [diff] [blame] | 2402 | android:excludeFromRecents="true"> |
| 2403 | </activity> |
| 2404 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2405 | <activity |
| 2406 | android:name="Settings$NotificationAccessSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2407 | android:label="@string/manage_notification_access_title"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2408 | <intent-filter android:priority="1"> |
| 2409 | <action android:name="android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS" /> |
| 2410 | <category android:name="android.intent.category.DEFAULT" /> |
| 2411 | </intent-filter> |
Daniel Sandler | 79b9bfe | 2013-04-04 14:30:04 -0400 | [diff] [blame] | 2412 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
John Spurlock | 4a35051 | 2014-04-08 14:08:21 -0400 | [diff] [blame] | 2413 | android:value="com.android.settings.notification.NotificationAccessSettings" /> |
John Spurlock | 08531a8 | 2015-05-07 17:45:43 -0400 | [diff] [blame] | 2414 | </activity> |
| 2415 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2416 | <activity |
Julia Reynolds | 31dc1fd | 2019-10-29 15:15:08 -0400 | [diff] [blame] | 2417 | android:name="Settings$NotificationAccessDetailsActivity" |
| 2418 | android:label="@string/manage_notification_access_title" > |
| 2419 | <intent-filter android:priority="1"> |
| 2420 | <action android:name="android.settings.NOTIFICATION_LISTENER_DETAIL_SETTINGS" /> |
| 2421 | <category android:name="android.intent.category.DEFAULT" /> |
| 2422 | </intent-filter> |
| 2423 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2424 | android:value="com.android.settings.applications.specialaccess.notificationaccess.NotificationAccessDetails" /> |
| 2425 | </activity> |
| 2426 | |
| 2427 | <activity |
Fabian Kozynski | 01b2a63 | 2019-02-20 12:55:10 -0500 | [diff] [blame] | 2428 | android:name="Settings$NotificationAssistantSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2429 | android:label="@string/notification_assistant_title"> |
Fabian Kozynski | 01b2a63 | 2019-02-20 12:55:10 -0500 | [diff] [blame] | 2430 | <intent-filter android:priority="1"> |
| 2431 | <action android:name="android.settings.NOTIFICATION_ASSISTANT_SETTINGS" /> |
| 2432 | <category android:name="android.intent.category.DEFAULT" /> |
| 2433 | </intent-filter> |
| 2434 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2435 | android:value="com.android.settings.notification.NotificationAssistantPicker" /> |
| 2436 | </activity> |
| 2437 | |
| 2438 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2439 | android:name="Settings$VrListenersSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2440 | android:label="@string/vr_listeners_title"> |
Ruben Brunk | e1c98ca | 2016-02-23 18:58:56 -0800 | [diff] [blame] | 2441 | <intent-filter android:priority="1"> |
| 2442 | <action android:name="android.settings.VR_LISTENER_SETTINGS" /> |
| 2443 | <category android:name="android.intent.category.DEFAULT" /> |
| 2444 | </intent-filter> |
Ruben Brunk | e1c98ca | 2016-02-23 18:58:56 -0800 | [diff] [blame] | 2445 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | af15522 | 2018-07-11 09:41:39 -0700 | [diff] [blame] | 2446 | android:value="com.android.settings.applications.specialaccess.vrlistener.VrListenerSettings" /> |
Ruben Brunk | e1c98ca | 2016-02-23 18:58:56 -0800 | [diff] [blame] | 2447 | </activity> |
| 2448 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2449 | <activity |
| 2450 | android:name="Settings$PictureInPictureSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2451 | android:label="@string/picture_in_picture_title"> |
Winson Chung | 0a0d95a | 2017-01-20 11:22:44 -0800 | [diff] [blame] | 2452 | <intent-filter android:priority="1"> |
| 2453 | <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" /> |
| 2454 | <category android:name="android.intent.category.DEFAULT" /> |
| 2455 | </intent-filter> |
| 2456 | <intent-filter> |
| 2457 | <action android:name="android.intent.action.MAIN" /> |
| 2458 | <category android:name="android.intent.category.DEFAULT" /> |
| 2459 | </intent-filter> |
| 2460 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 4560ab7 | 2018-07-10 15:46:31 -0700 | [diff] [blame] | 2461 | android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureSettings" /> |
Winson Chung | 0a0d95a | 2017-01-20 11:22:44 -0800 | [diff] [blame] | 2462 | </activity> |
Ruben Brunk | e1c98ca | 2016-02-23 18:58:56 -0800 | [diff] [blame] | 2463 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2464 | <activity |
| 2465 | android:name="Settings$AppPictureInPictureSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2466 | android:label="@string/picture_in_picture_title"> |
Winson Chung | 217d0e9 | 2017-03-17 15:48:38 -0700 | [diff] [blame] | 2467 | <intent-filter> |
| 2468 | <action android:name="android.settings.PICTURE_IN_PICTURE_SETTINGS" /> |
| 2469 | <category android:name="android.intent.category.DEFAULT" /> |
| 2470 | <data android:scheme="package" /> |
| 2471 | </intent-filter> |
| 2472 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 4560ab7 | 2018-07-10 15:46:31 -0700 | [diff] [blame] | 2473 | android:value="com.android.settings.applications.specialaccess.pictureinpicture.PictureInPictureDetails" /> |
Winson Chung | 217d0e9 | 2017-03-17 15:48:38 -0700 | [diff] [blame] | 2474 | </activity> |
| 2475 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2476 | <activity |
kholoud mohamed | 14a887f | 2020-01-29 17:38:31 +0000 | [diff] [blame] | 2477 | android:name="Settings$InteractAcrossProfilesSettingsActivity" |
| 2478 | android:label="@string/interact_across_profiles_title"> |
| 2479 | <intent-filter android:priority="1"> |
| 2480 | <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" /> |
| 2481 | <category android:name="android.intent.category.DEFAULT" /> |
| 2482 | </intent-filter> |
| 2483 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2484 | android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesSettings" /> |
| 2485 | </activity> |
| 2486 | |
| 2487 | <activity android:name="Settings$AppInteractAcrossProfilesSettingsActivity" |
| 2488 | android:label="@string/interact_across_profiles_title"> |
| 2489 | <intent-filter> |
| 2490 | <action android:name="android.settings.MANAGE_CROSS_PROFILE_ACCESS" /> |
| 2491 | <category android:name="android.intent.category.DEFAULT" /> |
| 2492 | <data android:scheme="package" /> |
| 2493 | </intent-filter> |
| 2494 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2495 | android:value="com.android.settings.applications.specialaccess.interactacrossprofiles.InteractAcrossProfilesDetails" /> |
| 2496 | </activity> |
| 2497 | |
| 2498 | <activity |
Fan Zhang | e366f02 | 2019-03-19 13:08:10 -0700 | [diff] [blame] | 2499 | android:name="Settings$ZenAccessDetailSettingsActivity" |
| 2500 | android:label="@string/manage_zen_access_title" |
| 2501 | android:excludeFromRecents="true"> |
| 2502 | <intent-filter> |
| 2503 | <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_DETAIL_SETTINGS" /> |
| 2504 | <category android:name="android.intent.category.DEFAULT" /> |
| 2505 | <data android:scheme="package" /> |
| 2506 | </intent-filter> |
| 2507 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2508 | android:value="com.android.settings.applications.specialaccess.zenaccess.ZenAccessDetails" /> |
| 2509 | </activity> |
| 2510 | |
| 2511 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2512 | android:name="Settings$ZenAccessSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2513 | android:label="@string/manage_zen_access_title"> |
John Spurlock | 08531a8 | 2015-05-07 17:45:43 -0400 | [diff] [blame] | 2514 | <intent-filter android:priority="1"> |
John Spurlock | a00194d | 2015-06-04 13:01:59 -0400 | [diff] [blame] | 2515 | <action android:name="android.settings.NOTIFICATION_POLICY_ACCESS_SETTINGS" /> |
John Spurlock | 08531a8 | 2015-05-07 17:45:43 -0400 | [diff] [blame] | 2516 | <category android:name="android.intent.category.DEFAULT" /> |
| 2517 | </intent-filter> |
John Spurlock | 08531a8 | 2015-05-07 17:45:43 -0400 | [diff] [blame] | 2518 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 2519 | android:value="com.android.settings.notification.zen.ZenAccessSettings" /> |
Daniel Sandler | 79b9bfe | 2013-04-04 14:30:04 -0400 | [diff] [blame] | 2520 | </activity> |
| 2521 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2522 | <activity |
| 2523 | android:name="Settings$ConfigureNotificationSettingsActivity" |
| 2524 | android:label="@string/configure_notification_settings" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2525 | android:exported="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2526 | <intent-filter android:priority="1"> |
| 2527 | <action android:name="android.settings.NOTIFICATION_SETTINGS" /> |
| 2528 | <category android:name="android.intent.category.DEFAULT" /> |
| 2529 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 2530 | <intent-filter android:priority="21"> |
Dan Sandler | 347f944 | 2014-03-11 01:32:47 -0400 | [diff] [blame] | 2531 | <action android:name="android.intent.action.MAIN" /> |
Dan Sandler | 347f944 | 2014-03-11 01:32:47 -0400 | [diff] [blame] | 2532 | <category android:name="com.android.settings.SHORTCUT" /> |
| 2533 | </intent-filter> |
| 2534 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | 8c0a423 | 2015-11-24 10:08:14 -0500 | [diff] [blame] | 2535 | android:value="com.android.settings.notification.ConfigureNotificationSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2536 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2537 | android:value="true" /> |
Dan Sandler | 347f944 | 2014-03-11 01:32:47 -0400 | [diff] [blame] | 2538 | </activity> |
| 2539 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2540 | <activity |
Julia Reynolds | 4e48da9 | 2019-03-26 09:04:22 -0400 | [diff] [blame] | 2541 | android:name="Settings$AppBubbleNotificationSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2542 | android:label="@string/bubbles_app_toggle_title"> |
Julia Reynolds | 4e48da9 | 2019-03-26 09:04:22 -0400 | [diff] [blame] | 2543 | <intent-filter android:priority="1"> |
| 2544 | <action android:name="android.settings.APP_NOTIFICATION_BUBBLE_SETTINGS" /> |
| 2545 | <category android:name="android.intent.category.DEFAULT" /> |
| 2546 | </intent-filter> |
| 2547 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 2548 | android:value="com.android.settings.notification.app.AppBubbleNotificationSettings" /> |
Julia Reynolds | 4e48da9 | 2019-03-26 09:04:22 -0400 | [diff] [blame] | 2549 | </activity> |
| 2550 | |
| 2551 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2552 | android:name="Settings$SoundSettingsActivity" |
| 2553 | android:label="@string/sound_settings" |
| 2554 | android:icon="@drawable/ic_homepage_sound" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2555 | android:exported="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2556 | <intent-filter android:priority="1"> |
John Spurlock | 4e4cdef | 2014-05-28 09:43:45 -0400 | [diff] [blame] | 2557 | <action android:name="com.android.settings.SOUND_SETTINGS" /> |
| 2558 | <action android:name="android.settings.SOUND_SETTINGS" /> |
Kenny Guy | f9f279e | 2017-04-04 18:01:13 +0100 | [diff] [blame] | 2559 | <action android:name="android.settings.ACTION_OTHER_SOUND_SETTINGS" /> |
John Spurlock | 4e4cdef | 2014-05-28 09:43:45 -0400 | [diff] [blame] | 2560 | <category android:name="android.intent.category.DEFAULT" /> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2561 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 2562 | <intent-filter android:priority="40"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2563 | <action android:name="android.intent.action.MAIN" /> |
Julia Reynolds | 8c0a423 | 2015-11-24 10:08:14 -0500 | [diff] [blame] | 2564 | <category android:name="com.android.settings.SHORTCUT" /> |
John Spurlock | 4e4cdef | 2014-05-28 09:43:45 -0400 | [diff] [blame] | 2565 | </intent-filter> |
| 2566 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | 8c0a423 | 2015-11-24 10:08:14 -0500 | [diff] [blame] | 2567 | android:value="com.android.settings.notification.SoundSettings" /> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2568 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2569 | android:value="true" /> |
Julia Reynolds | 8c0a423 | 2015-11-24 10:08:14 -0500 | [diff] [blame] | 2570 | </activity> |
John Spurlock | 4e4cdef | 2014-05-28 09:43:45 -0400 | [diff] [blame] | 2571 | |
Julia Reynolds | ff9500d | 2018-03-21 15:23:13 -0400 | [diff] [blame] | 2572 | <!-- Show apps for which application-level notification settings are applicable --> |
| 2573 | <activity android:name="Settings$NotificationAppListActivity" |
| 2574 | android:label="@string/app_notifications_title" |
| 2575 | android:icon="@drawable/ic_notifications" |
Fan Zhang | 416ff0a | 2018-10-26 15:39:39 -0700 | [diff] [blame] | 2576 | android:exported="true"> |
Julia Reynolds | ff9500d | 2018-03-21 15:23:13 -0400 | [diff] [blame] | 2577 | <intent-filter android:priority="1"> |
| 2578 | <action android:name="android.settings.ALL_APPS_NOTIFICATION_SETTINGS" /> |
| 2579 | <category android:name="android.intent.category.DEFAULT" /> |
| 2580 | </intent-filter> |
Julia Reynolds | ff9500d | 2018-03-21 15:23:13 -0400 | [diff] [blame] | 2581 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2582 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
| 2583 | </activity> |
| 2584 | |
John Spurlock | 802ddf9 | 2014-07-18 11:51:13 -0400 | [diff] [blame] | 2585 | <!-- Show application-level notification settings (app passed in as extras) --> |
| 2586 | <activity android:name="Settings$AppNotificationSettingsActivity" |
John Spurlock | b8ec343 | 2014-07-27 13:33:34 -0400 | [diff] [blame] | 2587 | android:exported="true"> |
Dianne Hackborn | 0702e87 | 2015-02-20 12:48:32 -0800 | [diff] [blame] | 2588 | <intent-filter android:priority="1"> |
| 2589 | <action android:name="android.settings.APP_NOTIFICATION_SETTINGS" /> |
| 2590 | <category android:name="android.intent.category.DEFAULT" /> |
| 2591 | </intent-filter> |
John Spurlock | 802ddf9 | 2014-07-18 11:51:13 -0400 | [diff] [blame] | 2592 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 2593 | android:value="com.android.settings.notification.app.AppNotificationSettings" /> |
John Spurlock | b8ec343 | 2014-07-27 13:33:34 -0400 | [diff] [blame] | 2594 | </activity> |
| 2595 | |
Julia Reynolds | 6949288 | 2017-01-25 10:32:07 -0500 | [diff] [blame] | 2596 | <!-- Show channel-level notification settings (channel passed in as extras) --> |
| 2597 | <activity android:name="Settings$ChannelNotificationSettingsActivity" |
Julia Reynolds | e2897ae | 2018-04-19 10:04:53 -0400 | [diff] [blame] | 2598 | android:label="@string/notification_channel_title" |
Julia Reynolds | 6949288 | 2017-01-25 10:32:07 -0500 | [diff] [blame] | 2599 | android:exported="true"> |
| 2600 | <intent-filter android:priority="1"> |
| 2601 | <action android:name="android.settings.CHANNEL_NOTIFICATION_SETTINGS" /> |
| 2602 | <category android:name="android.intent.category.DEFAULT" /> |
| 2603 | </intent-filter> |
Julia Reynolds | 6949288 | 2017-01-25 10:32:07 -0500 | [diff] [blame] | 2604 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Julia Reynolds | aceccce | 2019-11-26 16:14:03 -0500 | [diff] [blame] | 2605 | android:value="com.android.settings.notification.app.ChannelNotificationSettings" /> |
Julia Reynolds | 6949288 | 2017-01-25 10:32:07 -0500 | [diff] [blame] | 2606 | </activity> |
| 2607 | |
Zachary Kuznia | 5adcb3d | 2015-08-07 16:32:28 -0700 | [diff] [blame] | 2608 | <!-- Show Manual (from settings item) --> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2609 | <activity |
| 2610 | android:name="ManualDisplayActivity" |
| 2611 | android:label="@string/manual" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2612 | android:enabled="@bool/config_show_manual"> |
Zachary Kuznia | 5adcb3d | 2015-08-07 16:32:28 -0700 | [diff] [blame] | 2613 | <intent-filter> |
| 2614 | <action android:name="android.settings.SHOW_MANUAL" /> |
| 2615 | <category android:name="android.intent.category.DEFAULT" /> |
| 2616 | </intent-filter> |
| 2617 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2618 | android:value="true" /> |
| 2619 | </activity> |
| 2620 | |
Jake Hamby | 5e9bd86 | 2013-04-09 15:48:25 -0700 | [diff] [blame] | 2621 | <!-- Show regulatory info (from settings item or dialing "*#07#") --> |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2622 | <activity |
| 2623 | android:name="RegulatoryInfoDisplayActivity" |
| 2624 | android:label="@string/regulatory_labels" |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2625 | android:enabled="@bool/config_show_regulatory_info"> |
Jeff Sharkey | 3daa259 | 2014-04-18 15:30:15 -0700 | [diff] [blame] | 2626 | <intent-filter> |
Jake Hamby | 5e9bd86 | 2013-04-09 15:48:25 -0700 | [diff] [blame] | 2627 | <action android:name="android.settings.SHOW_REGULATORY_INFO" /> |
| 2628 | <category android:name="android.intent.category.DEFAULT" /> |
| 2629 | </intent-filter> |
Alexandra Gherghina | 2513851 | 2014-07-21 22:42:21 +0100 | [diff] [blame] | 2630 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2631 | android:value="true" /> |
Jake Hamby | 5e9bd86 | 2013-04-09 15:48:25 -0700 | [diff] [blame] | 2632 | </activity> |
| 2633 | |
Eugene Susla | 5754412 | 2017-04-14 10:42:59 -0700 | [diff] [blame] | 2634 | <!-- Confirmation dialog for enabling notification access from CompanionDeviceManager --> |
| 2635 | <activity android:name=".notification.NotificationAccessConfirmationActivity" |
| 2636 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" /> |
| 2637 | |
Eri Kasamatsu | 70b1928 | 2015-11-12 17:36:04 +0100 | [diff] [blame] | 2638 | <receiver android:name="com.android.settingslib.bluetooth.BluetoothDiscoverableTimeoutReceiver"> |
Srikanth Uppala | 59a97f7 | 2012-04-04 03:32:22 -0700 | [diff] [blame] | 2639 | <intent-filter> |
| 2640 | <action android:name="android.bluetooth.intent.DISCOVERABLE_TIMEOUT" /> |
| 2641 | </intent-filter> |
| 2642 | </receiver> |
| 2643 | |
Amith Yamasani | 32dccbc | 2012-09-13 18:06:49 -0700 | [diff] [blame] | 2644 | <!-- Watch for ContactsContract.Profile changes and update the user's photo. --> |
| 2645 | <receiver android:name=".users.ProfileUpdateReceiver"> |
| 2646 | <intent-filter> |
| 2647 | <action android:name="android.provider.Contacts.PROFILE_CHANGED" /> |
| 2648 | </intent-filter> |
| 2649 | </receiver> |
| 2650 | |
Sanket Padawe | 9d7eb49 | 2015-06-01 10:25:46 -0700 | [diff] [blame] | 2651 | <receiver android:name=".sim.SimSelectNotification"> |
PauloftheWest | 63f7bc8 | 2014-10-30 08:01:30 -0700 | [diff] [blame] | 2652 | <intent-filter> |
Malcolm Chen | a05e6f8 | 2019-03-27 17:45:29 -0700 | [diff] [blame] | 2653 | <action android:name="android.telephony.action.PRIMARY_SUBSCRIPTION_LIST_CHANGED"/> |
Malcolm Chen | 7dd82f9 | 2019-04-18 19:45:04 -0700 | [diff] [blame] | 2654 | <action android:name="android.settings.ENABLE_MMS_DATA_REQUEST"/> |
PauloftheWest | 63f7bc8 | 2014-10-30 08:01:30 -0700 | [diff] [blame] | 2655 | </intent-filter> |
| 2656 | </receiver> |
| 2657 | |
Amith Yamasani | 2ad9625 | 2013-09-09 13:07:27 -0700 | [diff] [blame] | 2658 | <provider |
Aurimas Liutikas | e0069d3 | 2018-04-17 11:22:43 -0700 | [diff] [blame] | 2659 | android:name="androidx.core.content.FileProvider" |
Amith Yamasani | 2ad9625 | 2013-09-09 13:07:27 -0700 | [diff] [blame] | 2660 | android:authorities="com.android.settings.files" |
| 2661 | android:grantUriPermissions="true" |
| 2662 | android:exported="false"> |
| 2663 | <meta-data |
| 2664 | android:name="android.support.FILE_PROVIDER_PATHS" |
| 2665 | android:resource="@xml/file_paths" /> |
| 2666 | </provider> |
Fabrice Di Meglio | fa7dc24 | 2014-03-12 19:24:43 -0700 | [diff] [blame] | 2667 | |
Andrew Sapperstein | 56a8c33 | 2019-06-18 09:44:18 -0700 | [diff] [blame] | 2668 | <provider |
| 2669 | android:name=".deviceinfo.legal.ModuleLicenseProvider" |
| 2670 | android:authorities="com.android.settings.module_licenses" |
| 2671 | android:grantUriPermissions="true" |
| 2672 | android:exported="false"/> |
| 2673 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2674 | <activity |
| 2675 | android:name=".wifi.RequestToggleWiFiActivity" |
| 2676 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" |
Svetoslav Ganov | 871078e | 2016-07-26 18:26:45 -0700 | [diff] [blame] | 2677 | android:excludeFromRecents="true" |
| 2678 | android:permission="android.permission.CHANGE_WIFI_STATE"> |
| 2679 | <intent-filter> |
| 2680 | <action android:name="android.net.wifi.action.REQUEST_ENABLE" /> |
| 2681 | <action android:name="android.net.wifi.action.REQUEST_DISABLE" /> |
| 2682 | <category android:name="android.intent.category.DEFAULT" /> |
| 2683 | </intent-filter> |
| 2684 | </activity> |
| 2685 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2686 | <activity |
| 2687 | android:name=".wifi.WifiDialogActivity" |
Udam Saini | 86d52c9 | 2016-03-10 11:30:53 -0800 | [diff] [blame] | 2688 | android:label="" |
Maurice Lam | 771fac5 | 2015-09-08 10:36:43 -0700 | [diff] [blame] | 2689 | android:theme="@style/Transparent" |
| 2690 | android:excludeFromRecents="true" |
lindatseng | 8d7d013 | 2019-05-21 14:41:11 -0700 | [diff] [blame] | 2691 | android:documentLaunchMode="always" |
Maurice Lam | ec1f2ee | 2015-10-29 16:40:49 -0700 | [diff] [blame] | 2692 | android:exported="true" |
Udam Saini | 0ec6862 | 2015-12-21 10:52:34 -0800 | [diff] [blame] | 2693 | android:permission="android.permission.CHANGE_WIFI_STATE" |
| 2694 | android:configChanges="orientation|keyboardHidden|screenSize"> |
Maurice Lam | 771fac5 | 2015-09-08 10:36:43 -0700 | [diff] [blame] | 2695 | <intent-filter> |
| 2696 | <action android:name="com.android.settings.WIFI_DIALOG" /> |
| 2697 | <category android:name="android.intent.category.DEFAULT" /> |
| 2698 | </intent-filter> |
| 2699 | </activity> |
| 2700 | |
cosmohsieh | da37bb7 | 2018-11-26 11:58:02 +0800 | [diff] [blame] | 2701 | <activity |
| 2702 | android:name=".wifi.NetworkRequestDialogActivity" |
govenliu | dbf920c | 2019-08-19 16:22:22 +0800 | [diff] [blame] | 2703 | android:theme="@style/Theme.AlertDialog" |
cosmohsieh | da37bb7 | 2018-11-26 11:58:02 +0800 | [diff] [blame] | 2704 | android:excludeFromRecents="true" |
cosmohsieh | ed2fac1 | 2019-03-21 13:32:19 +0800 | [diff] [blame] | 2705 | android:launchMode="singleTop" |
| 2706 | android:taskAffinity=".wifi.NetworkRequestDialogActivity" |
cosmohsieh | da37bb7 | 2018-11-26 11:58:02 +0800 | [diff] [blame] | 2707 | android:exported="true" |
Roshan Pius | b2db1f0 | 2019-11-19 15:45:40 +0000 | [diff] [blame] | 2708 | android:permission="android.permission.NETWORK_SETTINGS"> |
cosmohsieh | da37bb7 | 2018-11-26 11:58:02 +0800 | [diff] [blame] | 2709 | <intent-filter> |
cosmohsieh | 1e2e614 | 2019-01-11 10:02:24 +0800 | [diff] [blame] | 2710 | <action android:name="com.android.settings.wifi.action.NETWORK_REQUEST" /> |
cosmohsieh | da37bb7 | 2018-11-26 11:58:02 +0800 | [diff] [blame] | 2711 | <category android:name="android.intent.category.DEFAULT" /> |
| 2712 | </intent-filter> |
| 2713 | </activity> |
| 2714 | |
Jason Chiu | 2c3e6c6 | 2019-04-30 14:41:19 +0800 | [diff] [blame] | 2715 | <receiver |
Jason Chiu | da2ca2f | 2019-01-29 17:13:28 +0800 | [diff] [blame] | 2716 | android:name=".wifi.slice.ConnectToWifiHandler" |
Jason Chiu | da2ca2f | 2019-01-29 17:13:28 +0800 | [diff] [blame] | 2717 | android:exported="false" /> |
| 2718 | |
Antony Sargent | a7dc277 | 2019-04-12 15:08:16 -0700 | [diff] [blame] | 2719 | <activity |
| 2720 | android:name=".sim.SimDialogActivity" |
| 2721 | android:theme="@style/Theme.AlertDialog" |
| 2722 | android:label="@string/sim_settings_title" |
| 2723 | android:launchMode="singleTop" |
| 2724 | android:excludeFromRecents="true"> |
PauloftheWest | ffef98b | 2014-11-18 07:12:48 -0800 | [diff] [blame] | 2725 | <intent-filter> |
| 2726 | <action android:name="android.intent.action.MAIN" /> |
PauloftheWest | ffef98b | 2014-11-18 07:12:48 -0800 | [diff] [blame] | 2727 | </intent-filter> |
| 2728 | </activity> |
| 2729 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2730 | <activity |
Fan Zhang | 03dd39c | 2019-04-02 16:41:01 -0700 | [diff] [blame] | 2731 | android:name=".flashlight.FlashlightHandleActivity" |
| 2732 | android:theme="@android:style/Theme.NoDisplay" |
| 2733 | android:excludeFromRecents="true" |
| 2734 | android:exported="true" |
| 2735 | android:label="@string/power_flashlight"/> |
| 2736 | |
| 2737 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2738 | android:name="Settings$WifiCallingSettingsActivity" |
Fan Zhang | 416ff0a | 2018-10-26 15:39:39 -0700 | [diff] [blame] | 2739 | android:label="@string/wifi_calling_settings_title"> |
Pavel Zhamaitsiak | 4ab3256 | 2015-02-23 15:34:07 -0800 | [diff] [blame] | 2740 | <intent-filter> |
| 2741 | <action android:name="android.intent.action.MAIN" /> |
| 2742 | <action android:name="android.settings.WIFI_CALLING_SETTINGS" /> |
| 2743 | <category android:name="android.intent.category.DEFAULT" /> |
| 2744 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 2745 | </intent-filter> |
| 2746 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | b91db42 | 2018-02-09 10:25:55 -0800 | [diff] [blame] | 2747 | android:value="com.android.settings.wifi.calling.WifiCallingSettings" /> |
Pavel Zhamaitsiak | 4ab3256 | 2015-02-23 15:34:07 -0800 | [diff] [blame] | 2748 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2749 | android:value="true" /> |
Pavel Zhamaitsiak | 4ab3256 | 2015-02-23 15:34:07 -0800 | [diff] [blame] | 2750 | </activity> |
| 2751 | |
Fan Zhang | b91db42 | 2018-02-09 10:25:55 -0800 | [diff] [blame] | 2752 | <activity android:name=".wifi.calling.WifiCallingSuggestionActivity" |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2753 | android:label="@string/wifi_calling_settings_title" |
Mill Chen | 7195800 | 2019-01-23 10:44:39 +0800 | [diff] [blame] | 2754 | android:icon="@drawable/ic_suggestion_wireless"> |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2755 | <intent-filter> |
| 2756 | <action android:name="android.intent.action.MAIN" /> |
Fan Zhang | 7afbf0f | 2017-05-08 09:31:01 -0700 | [diff] [blame] | 2757 | <category android:name="com.android.settings.suggested.category.FIRST_IMPRESSION" /> |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2758 | </intent-filter> |
| 2759 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | b91db42 | 2018-02-09 10:25:55 -0800 | [diff] [blame] | 2760 | android:value="com.android.settings.wifi.calling.WifiCallingSettings" /> |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2761 | <meta-data android:name="com.android.settings.dismiss" |
Fan Zhang | af91c1f | 2017-06-03 15:24:11 -0700 | [diff] [blame] | 2762 | android:value="10,14,30" /> |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2763 | <meta-data android:name="com.android.settings.title" |
| 2764 | android:resource="@string/wifi_calling_suggestion_title" /> |
Jason Monk | ec1f28e | 2016-02-24 17:39:29 -0500 | [diff] [blame] | 2765 | <meta-data android:name="com.android.settings.summary" |
| 2766 | android:resource="@string/wifi_calling_suggestion_summary" /> |
Jason Monk | d3ac239 | 2016-01-27 13:54:35 -0500 | [diff] [blame] | 2767 | </activity> |
| 2768 | |
Fabrice Di Meglio | fa7dc24 | 2014-03-12 19:24:43 -0700 | [diff] [blame] | 2769 | <provider |
| 2770 | android:name=".search.SettingsSearchIndexablesProvider" |
| 2771 | android:authorities="com.android.settings" |
| 2772 | android:multiprocess="false" |
| 2773 | android:grantUriPermissions="true" |
| 2774 | android:permission="android.permission.READ_SEARCH_INDEXABLES" |
| 2775 | android:exported="true"> |
| 2776 | <intent-filter> |
| 2777 | <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" /> |
| 2778 | </intent-filter> |
| 2779 | </provider> |
| 2780 | |
Fan Zhang | 2985a07 | 2017-09-27 17:32:46 -0700 | [diff] [blame] | 2781 | <provider |
| 2782 | android:name=".dashboard.suggestions.SuggestionStateProvider" |
| 2783 | android:authorities="com.android.settings.suggestions.status" |
| 2784 | android:exported="true"> |
| 2785 | <intent-filter> |
| 2786 | <action android:name="com.android.settings.action.SUGGESTION_STATE_PROVIDER" /> |
| 2787 | </intent-filter> |
| 2788 | </provider> |
| 2789 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2790 | <activity |
| 2791 | android:name="Settings$OverlaySettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2792 | android:label="@string/draw_overlay"> |
Billy Lau | 7f70ba1 | 2015-07-03 17:01:18 +0100 | [diff] [blame] | 2793 | <intent-filter android:priority="1"> |
| 2794 | <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" /> |
| 2795 | <category android:name="android.intent.category.DEFAULT" /> |
| 2796 | </intent-filter> |
Billy Lau | fee7856 | 2015-07-27 12:57:07 +0100 | [diff] [blame] | 2797 | <intent-filter android:priority="1"> |
| 2798 | <action android:name="android.settings.action.MANAGE_OVERLAY_PERMISSION" /> |
| 2799 | <category android:name="android.intent.category.DEFAULT" /> |
| 2800 | <data android:scheme="package" /> |
| 2801 | </intent-filter> |
| 2802 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Bernardo Rufino | 897a0e0 | 2019-11-06 15:00:27 +0000 | [diff] [blame] | 2803 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Raff Tsai | 613f15a | 2020-01-05 21:56:35 +0800 | [diff] [blame] | 2804 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2805 | android:value="true" /> |
Billy Lau | fee7856 | 2015-07-27 12:57:07 +0100 | [diff] [blame] | 2806 | </activity> |
| 2807 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2808 | <activity |
Bernardo Rufino | 8854031 | 2019-11-25 19:40:53 +0000 | [diff] [blame] | 2809 | android:name="Settings$AppDrawOverlaySettingsActivity" |
| 2810 | android:label="@string/draw_overlay" |
| 2811 | android:permission="android.permission.INTERNAL_SYSTEM_WINDOW"> |
| 2812 | <intent-filter android:priority="1"> |
| 2813 | <action android:name="android.settings.MANAGE_APP_OVERLAY_PERMISSION" /> |
| 2814 | <category android:name="android.intent.category.DEFAULT" /> |
| 2815 | <data android:scheme="package" /> |
| 2816 | </intent-filter> |
| 2817 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2818 | android:value="com.android.settings.applications.appinfo.DrawOverlayDetails" /> |
| 2819 | </activity> |
| 2820 | |
| 2821 | <activity |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2822 | android:name="Settings$WriteSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2823 | android:label="@string/write_settings_title"> |
Billy Lau | 7f70ba1 | 2015-07-03 17:01:18 +0100 | [diff] [blame] | 2824 | <intent-filter android:priority="1"> |
| 2825 | <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" /> |
| 2826 | <category android:name="android.intent.category.DEFAULT" /> |
| 2827 | </intent-filter> |
Billy Lau | bb3aa26 | 2015-07-21 16:43:17 +0100 | [diff] [blame] | 2828 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 2829 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Raff Tsai | 613f15a | 2020-01-05 21:56:35 +0800 | [diff] [blame] | 2830 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2831 | android:value="true" /> |
Billy Lau | 7f70ba1 | 2015-07-03 17:01:18 +0100 | [diff] [blame] | 2832 | </activity> |
| 2833 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2834 | <activity |
| 2835 | android:name="Settings$AppWriteSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2836 | android:label="@string/write_settings_title"> |
Suprabh Shukla | f59d211 | 2017-03-06 17:51:05 -0800 | [diff] [blame] | 2837 | <intent-filter android:priority="1"> |
| 2838 | <action android:name="android.settings.action.MANAGE_WRITE_SETTINGS" /> |
| 2839 | <category android:name="android.intent.category.DEFAULT" /> |
| 2840 | <data android:scheme="package" /> |
| 2841 | </intent-filter> |
| 2842 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Doris Ling | ebf8843 | 2017-12-11 11:18:10 -0800 | [diff] [blame] | 2843 | android:value="com.android.settings.applications.appinfo.WriteSettingsDetails" /> |
Suprabh Shukla | f59d211 | 2017-03-06 17:51:05 -0800 | [diff] [blame] | 2844 | </activity> |
| 2845 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2846 | <activity |
| 2847 | android:name="Settings$ManageExternalSourcesActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2848 | android:label="@string/install_other_apps"> |
Suprabh Shukla | 57d9231 | 2016-12-16 14:44:05 -0800 | [diff] [blame] | 2849 | <intent-filter android:priority="1"> |
Suprabh Shukla | ed0ba74 | 2017-04-20 16:02:54 -0700 | [diff] [blame] | 2850 | <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" /> |
Suprabh Shukla | 57d9231 | 2016-12-16 14:44:05 -0800 | [diff] [blame] | 2851 | <category android:name="android.intent.category.DEFAULT" /> |
| 2852 | </intent-filter> |
| 2853 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | a8cac7a | 2017-10-11 16:44:41 -0700 | [diff] [blame] | 2854 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
Raff Tsai | 613f15a | 2020-01-05 21:56:35 +0800 | [diff] [blame] | 2855 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2856 | android:value="true" /> |
Suprabh Shukla | 57d9231 | 2016-12-16 14:44:05 -0800 | [diff] [blame] | 2857 | </activity> |
| 2858 | |
Suprabh Shukla | f59d211 | 2017-03-06 17:51:05 -0800 | [diff] [blame] | 2859 | <activity android:name="Settings$ManageAppExternalSourcesActivity" |
Fan Zhang | 416ff0a | 2018-10-26 15:39:39 -0700 | [diff] [blame] | 2860 | android:label="@string/install_other_apps"> |
Billy Lau | fee7856 | 2015-07-27 12:57:07 +0100 | [diff] [blame] | 2861 | <intent-filter android:priority="1"> |
Suprabh Shukla | ed0ba74 | 2017-04-20 16:02:54 -0700 | [diff] [blame] | 2862 | <action android:name="android.settings.MANAGE_UNKNOWN_APP_SOURCES" /> |
Billy Lau | fee7856 | 2015-07-27 12:57:07 +0100 | [diff] [blame] | 2863 | <category android:name="android.intent.category.DEFAULT" /> |
| 2864 | <data android:scheme="package" /> |
| 2865 | </intent-filter> |
| 2866 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Doris Ling | ebf8843 | 2017-12-11 11:18:10 -0800 | [diff] [blame] | 2867 | android:value="com.android.settings.applications.appinfo.ExternalSourcesDetails" /> |
Billy Lau | fee7856 | 2015-07-27 12:57:07 +0100 | [diff] [blame] | 2868 | </activity> |
| 2869 | |
arangelov | e35badd | 2017-10-27 13:51:28 +0100 | [diff] [blame] | 2870 | <activity android:name=".enterprise.ActionDisabledByAdminDialog" |
Sudheer Shanka | 9159fe9 | 2015-11-23 12:07:05 +0000 | [diff] [blame] | 2871 | android:theme="@style/Transparent" |
Mill Chen | 078af33 | 2019-04-04 15:39:27 -0700 | [diff] [blame] | 2872 | android:taskAffinity="com.android.settings.enterprise" |
Sudheer Shanka | fee4e3e | 2016-02-18 17:48:01 +0000 | [diff] [blame] | 2873 | android:excludeFromRecents="true" |
| 2874 | android:launchMode="singleTop"> |
Sudheer Shanka | bc1c50c | 2018-02-13 17:19:38 -0800 | [diff] [blame] | 2875 | <intent-filter android:priority="1"> |
Sudheer Shanka | cb99d94 | 2015-12-31 17:46:29 +0000 | [diff] [blame] | 2876 | <action android:name="android.settings.SHOW_ADMIN_SUPPORT_DETAILS" /> |
Sudheer Shanka | 9159fe9 | 2015-11-23 12:07:05 +0000 | [diff] [blame] | 2877 | <category android:name="android.intent.category.DEFAULT" /> |
| 2878 | </intent-filter> |
| 2879 | </activity> |
| 2880 | |
shafik | a54d7a8 | 2020-01-08 18:03:22 +0000 | [diff] [blame] | 2881 | <activity |
| 2882 | android:name="Settings$ManageExternalStorageActivity" |
| 2883 | android:label="@string/manage_external_storage_title"> |
| 2884 | <intent-filter android:priority="1"> |
| 2885 | <action android:name="android.settings.MANAGE_ALL_FILES_ACCESS_PERMISSION" /> |
| 2886 | <category android:name="android.intent.category.DEFAULT" /> |
| 2887 | </intent-filter> |
| 2888 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2889 | android:value="com.android.settings.applications.manageapplications.ManageApplications" /> |
| 2890 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2891 | android:value="true" /> |
| 2892 | </activity> |
| 2893 | |
| 2894 | <activity |
| 2895 | android:name="Settings$AppManageExternalStorageActivity" |
shafik | c3284492 | 2020-01-20 16:01:21 +0000 | [diff] [blame] | 2896 | android:label="@string/manage_external_storage_title"> |
shafik | a54d7a8 | 2020-01-08 18:03:22 +0000 | [diff] [blame] | 2897 | <intent-filter android:priority="1"> |
| 2898 | <action android:name="android.settings.MANAGE_APP_ALL_FILES_ACCESS_PERMISSION" /> |
| 2899 | <category android:name="android.intent.category.DEFAULT" /> |
| 2900 | <data android:scheme="package" /> |
| 2901 | </intent-filter> |
| 2902 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2903 | android:value="com.android.settings.applications.appinfo.ManageExternalStorageDetails" /> |
| 2904 | </activity> |
| 2905 | |
Gustav Sennton | 4d3334c | 2016-12-13 19:16:48 +0000 | [diff] [blame] | 2906 | <!-- Keep compatibility with old WebView-picker implementation --> |
| 2907 | <activity-alias android:name=".WebViewImplementation" |
Gustav Sennton | 5b59628 | 2017-02-03 16:19:02 +0000 | [diff] [blame] | 2908 | android:targetActivity="Settings$WebViewAppPickerActivity" |
Jason Monk | 7519954 | 2016-05-06 15:09:32 -0400 | [diff] [blame] | 2909 | android:exported="true" |
| 2910 | android:excludeFromRecents="true" |
Andrew Sapperstein | 7e15743 | 2016-07-15 16:46:38 -0700 | [diff] [blame] | 2911 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"> |
Jason Monk | 7519954 | 2016-05-06 15:09:32 -0400 | [diff] [blame] | 2912 | <intent-filter> |
| 2913 | <action android:name="android.settings.WEBVIEW_SETTINGS" /> |
| 2914 | <category android:name="android.intent.category.DEFAULT" /> |
| 2915 | </intent-filter> |
| 2916 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2917 | android:value="true" /> |
Gustav Sennton | 5b59628 | 2017-02-03 16:19:02 +0000 | [diff] [blame] | 2918 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2919 | android:value="com.android.settings.webview.WebViewAppPicker" /> |
Doris Ling | d299b03 | 2017-02-28 17:32:36 -0800 | [diff] [blame] | 2920 | </activity-alias> |
Doris Ling | 9136523 | 2016-05-23 17:06:26 -0700 | [diff] [blame] | 2921 | |
Chandan Nath | 0bfef63 | 2019-01-28 21:15:13 +0000 | [diff] [blame] | 2922 | <provider |
Raff Tsai | 6db277e | 2019-10-02 16:43:23 +0800 | [diff] [blame] | 2923 | android:name=".dashboard.SummaryProvider" |
| 2924 | android:authorities="com.android.settings.dashboard.SummaryProvider"> |
Chandan Nath | 0bfef63 | 2019-01-28 21:15:13 +0000 | [diff] [blame] | 2925 | </provider> |
| 2926 | |
| 2927 | <activity android:name=".backup.UserBackupSettingsActivity" |
Doris Ling | 26bf003 | 2016-06-15 18:16:09 -0700 | [diff] [blame] | 2928 | android:label="@string/privacy_settings_title" |
Chandan Nath | 0bfef63 | 2019-01-28 21:15:13 +0000 | [diff] [blame] | 2929 | android:icon="@drawable/ic_settings_backup"> |
Doris Ling | 26bf003 | 2016-06-15 18:16:09 -0700 | [diff] [blame] | 2930 | <intent-filter> |
| 2931 | <action android:name="android.intent.action.MAIN" /> |
| 2932 | <category android:name="android.intent.category.DEFAULT" /> |
| 2933 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 2934 | </intent-filter> |
Chandan Nath | 0bfef63 | 2019-01-28 21:15:13 +0000 | [diff] [blame] | 2935 | <!-- Mark the activity as a dynamic setting --> |
| 2936 | <intent-filter> |
| 2937 | <action android:name="com.android.settings.action.IA_SETTINGS" /> |
| 2938 | </intent-filter> |
| 2939 | <!-- Tell Settings app which category it belongs to --> |
| 2940 | <meta-data android:name="com.android.settings.category" |
| 2941 | android:value="com.android.settings.category.ia.system" /> |
| 2942 | <meta-data android:name="com.android.settings.summary_uri" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2943 | android:value="content://com.android.settings.dashboard.SummaryProvider/backup" /> |
Chandan Nath | 0bfef63 | 2019-01-28 21:15:13 +0000 | [diff] [blame] | 2944 | <meta-data android:name="com.android.settings.order" android:value="-60"/> |
Doris Ling | 26bf003 | 2016-06-15 18:16:09 -0700 | [diff] [blame] | 2945 | </activity> |
| 2946 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2947 | <activity |
| 2948 | android:name="Settings$AutomaticStorageManagerSettingsActivity" |
| 2949 | android:exported="@bool/config_storage_manager_settings_enabled" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2950 | android:label="@string/automatic_storage_manager_settings"> |
Daniel Nishi | 3981889 | 2016-09-20 16:40:49 -0700 | [diff] [blame] | 2951 | <intent-filter android:priority="1"> |
| 2952 | <action android:name="android.settings.STORAGE_MANAGER_SETTINGS" /> |
| 2953 | <category android:name="android.intent.category.DEFAULT" /> |
| 2954 | </intent-filter> |
| 2955 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2956 | android:value="com.android.settings.deletionhelper.AutomaticStorageManagerSettings" /> |
| 2957 | </activity> |
Fan Zhang | cc335d9 | 2016-09-29 14:37:14 -0700 | [diff] [blame] | 2958 | |
Sean Stout | 6441723 | 2019-04-05 12:34:44 -0700 | [diff] [blame] | 2959 | <!-- Show app-level advanced power usage details (app passed in as extras) --> |
| 2960 | <activity |
| 2961 | android:name=".fuelgauge.AdvancedPowerUsageDetailActivity" |
| 2962 | android:excludeFromRecents="true" |
| 2963 | android:launchMode="singleInstance" |
| 2964 | android:theme="@android:style/Theme.NoDisplay"> |
| 2965 | <intent-filter> |
Sean Stout | 44eecb7 | 2019-04-15 15:34:09 -0700 | [diff] [blame] | 2966 | <action android:name="android.settings.APP_BATTERY_SETTINGS" /> |
Sean Stout | 6441723 | 2019-04-05 12:34:44 -0700 | [diff] [blame] | 2967 | <category android:name="android.intent.category.DEFAULT" /> |
| 2968 | <data android:scheme="package" /> |
| 2969 | </intent-filter> |
| 2970 | </activity> |
| 2971 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2972 | <activity |
| 2973 | android:name=".Settings$AppAndNotificationDashboardActivity" |
| 2974 | android:label="@string/app_and_notification_dashboard_title" |
| 2975 | android:icon="@drawable/ic_homepage_apps" |
Fan Zhang | ac4ad16 | 2018-12-18 11:32:10 -0800 | [diff] [blame] | 2976 | android:exported="true"> |
Fan Zhang | f37be6a | 2016-10-20 12:47:52 -0700 | [diff] [blame] | 2977 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 2978 | android:value="com.android.settings.applications.AppAndNotificationDashboardFragment"/> |
Fan Zhang | f37be6a | 2016-10-20 12:47:52 -0700 | [diff] [blame] | 2979 | </activity> |
| 2980 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2981 | <activity |
| 2982 | android:name=".Settings$AccountDashboardActivity" |
| 2983 | android:label="@string/account_dashboard_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 2984 | android:icon="@drawable/ic_homepage_accounts"> |
Fan Zhang | e2de8d5 | 2017-02-13 12:28:43 -0800 | [diff] [blame] | 2985 | <intent-filter android:priority="1"> |
| 2986 | <action android:name="android.settings.SYNC_SETTINGS" /> |
| 2987 | <category android:name="android.intent.category.DEFAULT" /> |
| 2988 | </intent-filter> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 2989 | <intent-filter android:priority="53"> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 2990 | <action android:name="android.intent.action.MAIN" /> |
| 2991 | <category android:name="com.android.settings.SHORTCUT" /> |
| 2992 | </intent-filter> |
Fan Zhang | b75fdfc | 2016-12-14 11:35:28 -0800 | [diff] [blame] | 2993 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
Fan Zhang | 881d579 | 2018-01-26 10:15:56 -0800 | [diff] [blame] | 2994 | android:value="com.android.settings.accounts.AccountDashboardFragment"/> |
Rubin Xu | 71560fc | 2018-05-17 14:48:49 +0100 | [diff] [blame] | 2995 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 2996 | android:value="true" /> |
Fan Zhang | b75fdfc | 2016-12-14 11:35:28 -0800 | [diff] [blame] | 2997 | </activity> |
| 2998 | |
Fan Zhang | db26cfb | 2018-02-07 17:32:17 -0800 | [diff] [blame] | 2999 | <activity |
| 3000 | android:name=".Settings$SystemDashboardActivity" |
| 3001 | android:label="@string/header_category_system" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 3002 | android:icon="@drawable/ic_homepage_system_dashboard"> |
Fan Zhang | 5a98177 | 2018-06-22 14:30:09 -0700 | [diff] [blame] | 3003 | <intent-filter android:priority="70"> |
Fan Zhang | 2f4355a | 2018-06-21 15:34:43 -0700 | [diff] [blame] | 3004 | <action android:name="android.intent.action.MAIN" /> |
| 3005 | <category android:name="com.android.settings.SHORTCUT" /> |
| 3006 | </intent-filter> |
Fan Zhang | cc335d9 | 2016-09-29 14:37:14 -0700 | [diff] [blame] | 3007 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3008 | android:value="com.android.settings.system.SystemDashboardFragment"/> |
| 3009 | </activity> |
| 3010 | |
Fan Zhang | b473730 | 2017-05-31 12:43:48 -0700 | [diff] [blame] | 3011 | <activity android:name=".support.SupportDashboardActivity" |
Fan Zhang | cc335d9 | 2016-09-29 14:37:14 -0700 | [diff] [blame] | 3012 | android:label="@string/page_tab_title_support" |
Fan Zhang | 925a4f8 | 2018-01-23 16:35:31 -0800 | [diff] [blame] | 3013 | android:icon="@drawable/ic_homepage_support" |
Daniel Nishi | 67ca29f | 2017-07-17 12:49:04 -0700 | [diff] [blame] | 3014 | android:theme="@android:style/Theme.DeviceDefault.Light.Panel" |
Fan Zhang | 6ff6add | 2017-03-02 12:07:38 -0800 | [diff] [blame] | 3015 | android:enabled="@bool/config_support_enabled"> |
Fan Zhang | 9445d15 | 2018-08-06 10:03:07 -0700 | [diff] [blame] | 3016 | <intent-filter> |
Maurice Lam | 5f0edba | 2017-06-08 11:57:40 -0700 | [diff] [blame] | 3017 | <action android:name="com.android.settings.action.SUPPORT_SETTINGS" /> |
| 3018 | <category android:name="android.intent.category.DEFAULT" /> |
| 3019 | </intent-filter> |
Fan Zhang | a96a2d8 | 2016-09-27 17:51:11 -0700 | [diff] [blame] | 3020 | </activity> |
| 3021 | |
Jason Monk | dc252eb | 2016-01-30 11:36:52 -0500 | [diff] [blame] | 3022 | <service |
| 3023 | android:name=".SettingsDumpService" |
| 3024 | android:exported="true" |
| 3025 | android:permission="android.permission.DUMP" /> |
| 3026 | |
Dan Sandler | 3bd52dd | 2016-03-24 10:24:27 -0700 | [diff] [blame] | 3027 | <!-- Quick Settings tiles for Developer Options --> |
| 3028 | <service |
Fan Zhang | 8333260 | 2017-10-09 15:53:16 -0700 | [diff] [blame] | 3029 | android:name=".development.qstile.DevelopmentTiles$ShowLayout" |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3030 | android:label="@string/debug_layout" |
| 3031 | android:icon="@drawable/tile_icon_show_layout" |
Sunny Goyal | bf9f2d2 | 2016-11-02 11:20:17 -0700 | [diff] [blame] | 3032 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3033 | android:enabled="false"> |
| 3034 | <intent-filter> |
| 3035 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3036 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3037 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3038 | android:value="true"/> |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3039 | </service> |
| 3040 | <service |
Fan Zhang | 8333260 | 2017-10-09 15:53:16 -0700 | [diff] [blame] | 3041 | android:name=".development.qstile.DevelopmentTiles$GPUProfiling" |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3042 | android:label="@string/track_frame_time" |
| 3043 | android:icon="@drawable/tile_icon_graphics" |
| 3044 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 3045 | android:enabled="false"> |
| 3046 | <intent-filter> |
| 3047 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3048 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3049 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3050 | android:value="true"/> |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3051 | </service> |
| 3052 | <service |
Fan Zhang | 8333260 | 2017-10-09 15:53:16 -0700 | [diff] [blame] | 3053 | android:name=".development.qstile.DevelopmentTiles$ForceRTL" |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3054 | android:label="@string/force_rtl_layout_all_locales" |
| 3055 | android:icon="@drawable/tile_icon_force_rtl" |
| 3056 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 3057 | android:enabled="false"> |
| 3058 | <intent-filter> |
| 3059 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3060 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3061 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3062 | android:value="true"/> |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3063 | </service> |
| 3064 | <service |
Fan Zhang | 8333260 | 2017-10-09 15:53:16 -0700 | [diff] [blame] | 3065 | android:name=".development.qstile.DevelopmentTiles$AnimationSpeed" |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 3066 | android:label="@string/window_animation_scale_title" |
| 3067 | android:icon="@drawable/tile_icon_animation_speed" |
| 3068 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 3069 | android:enabled="false"> |
Dan Sandler | 12c4ba4 | 2016-03-28 11:13:40 -0400 | [diff] [blame] | 3070 | <intent-filter> |
| 3071 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3072 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3073 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3074 | android:value="true"/> |
Dan Sandler | 12c4ba4 | 2016-03-28 11:13:40 -0400 | [diff] [blame] | 3075 | </service> |
Fan Zhang | 130c477 | 2018-10-01 12:14:06 -0700 | [diff] [blame] | 3076 | |
Vishnu Nair | dc6bc48 | 2018-01-10 16:07:23 -0800 | [diff] [blame] | 3077 | <service |
Vishnu Nair | 74100b3 | 2018-02-22 07:14:36 -0800 | [diff] [blame] | 3078 | android:name=".development.qstile.DevelopmentTiles$WinscopeTrace" |
| 3079 | android:label="@string/winscope_trace_quick_settings_title" |
| 3080 | android:icon="@drawable/tile_icon_winscope_trace" |
Vishnu Nair | dc6bc48 | 2018-01-10 16:07:23 -0800 | [diff] [blame] | 3081 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 3082 | android:enabled="false"> |
| 3083 | <intent-filter> |
| 3084 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3085 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3086 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3087 | android:value="true"/> |
Vishnu Nair | dc6bc48 | 2018-01-10 16:07:23 -0800 | [diff] [blame] | 3088 | </service> |
Daniel Nishi | 80c2044 | 2016-05-04 10:08:36 -0700 | [diff] [blame] | 3089 | |
Michael Groover | 3a665ac | 2019-03-19 19:13:17 -0700 | [diff] [blame] | 3090 | <service |
| 3091 | android:name=".development.qstile.DevelopmentTiles$SensorsOff" |
| 3092 | android:label="@string/sensors_off_quick_settings_title" |
| 3093 | android:icon="@drawable/tile_icon_sensors_off" |
| 3094 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 3095 | android:enabled="false"> |
| 3096 | <intent-filter> |
| 3097 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 3098 | </intent-filter> |
Fabian Kozynski | e47b82b | 2020-02-07 10:11:57 -0500 | [diff] [blame] | 3099 | <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" |
Fabian Kozynski | e94d09f | 2019-06-28 13:23:56 -0400 | [diff] [blame] | 3100 | android:value="true"/> |
Michael Groover | 3a665ac | 2019-03-19 19:13:17 -0700 | [diff] [blame] | 3101 | </service> |
| 3102 | |
Fan Zhang | 7373ec0 | 2018-08-14 13:25:47 -0700 | [diff] [blame] | 3103 | <activity |
| 3104 | android:name=".HelpTrampoline" |
Jeff Sharkey | 4f425c8 | 2016-07-18 18:28:55 -0600 | [diff] [blame] | 3105 | android:exported="true" |
Fan Zhang | 7373ec0 | 2018-08-14 13:25:47 -0700 | [diff] [blame] | 3106 | android:theme="@style/Transparent" |
Jeff Sharkey | 4f425c8 | 2016-07-18 18:28:55 -0600 | [diff] [blame] | 3107 | android:permission="android.permission.DUMP" |
Fan Zhang | 7373ec0 | 2018-08-14 13:25:47 -0700 | [diff] [blame] | 3108 | android:excludeFromRecents="true" |
Jeff Sharkey | 4f425c8 | 2016-07-18 18:28:55 -0600 | [diff] [blame] | 3109 | android:enabled="@bool/config_has_help" /> |
| 3110 | |
Felipe Leme | f7d54ba | 2017-04-25 16:42:55 -0700 | [diff] [blame] | 3111 | <activity android:name=".applications.autofill.AutofillPickerActivity" |
| 3112 | android:excludeFromRecents="true" |
| 3113 | android:launchMode="singleInstance" |
| 3114 | android:exported="false"> |
| 3115 | </activity> |
| 3116 | |
| 3117 | <activity android:name=".applications.autofill.AutofillPickerTrampolineActivity" |
| 3118 | android:theme="@android:style/Theme.NoDisplay" |
| 3119 | android:excludeFromRecents="true" |
| 3120 | android:launchMode="singleInstance" |
| 3121 | android:label="@string/autofill_app"> |
Felipe Leme | db2b55a | 2017-04-24 18:10:09 -0700 | [diff] [blame] | 3122 | <intent-filter android:priority="1"> |
| 3123 | <action android:name="android.settings.REQUEST_SET_AUTOFILL_SERVICE" /> |
| 3124 | <category android:name="android.intent.category.DEFAULT" /> |
| 3125 | <data android:scheme="package" /> |
| 3126 | </intent-filter> |
| 3127 | </activity> |
| 3128 | |
Daniel Nishi | 232ebf1 | 2018-01-19 14:11:20 -0800 | [diff] [blame] | 3129 | <activity android:name="Settings$AdvancedConnectedDeviceActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 3130 | android:label="@string/connected_device_connections_title"> |
Daniel Nishi | 232ebf1 | 2018-01-19 14:11:20 -0800 | [diff] [blame] | 3131 | <intent-filter android:priority="1"> |
Zhaoyu Su | 0a9f876 | 2018-07-09 14:50:47 +0800 | [diff] [blame] | 3132 | <action android:name="android.settings.NFC_SETTINGS" /> |
| 3133 | <category android:name="android.intent.category.DEFAULT" /> |
| 3134 | </intent-filter> |
| 3135 | <intent-filter android:priority="1"> |
Daniel Nishi | 232ebf1 | 2018-01-19 14:11:20 -0800 | [diff] [blame] | 3136 | <action android:name="com.android.settings.ADVANCED_CONNECTED_DEVICE_SETTINGS" /> |
| 3137 | <category android:name="android.intent.category.DEFAULT" /> |
| 3138 | </intent-filter> |
Daniel Nishi | 232ebf1 | 2018-01-19 14:11:20 -0800 | [diff] [blame] | 3139 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3140 | android:value="com.android.settings.connecteddevice.AdvancedConnectedDeviceDashboardFragment" /> |
| 3141 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 3142 | android:value="true" /> |
| 3143 | </activity> |
| 3144 | |
jackqdyulei | 715408e | 2019-02-07 15:47:52 -0800 | [diff] [blame] | 3145 | <activity android:name="Settings$BluetoothDeviceDetailActivity" |
| 3146 | android:label="@string/device_details_title" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 3147 | android:permission="android.permission.BLUETOOTH_PRIVILEGED"> |
jackqdyulei | 715408e | 2019-02-07 15:47:52 -0800 | [diff] [blame] | 3148 | <intent-filter android:priority="1"> |
| 3149 | <action android:name="com.android.settings.BLUETOOTH_DEVICE_DETAIL_SETTINGS" /> |
| 3150 | <category android:name="android.intent.category.DEFAULT" /> |
| 3151 | </intent-filter> |
| 3152 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3153 | android:value="com.android.settings.bluetooth.BluetoothDeviceDetailsFragment" /> |
hughchen | b78ecc4 | 2019-10-16 15:27:17 +0800 | [diff] [blame] | 3154 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 3155 | android:value="true" /> |
jackqdyulei | 715408e | 2019-02-07 15:47:52 -0800 | [diff] [blame] | 3156 | </activity> |
| 3157 | |
Matt Fritze | 90899e0 | 2018-10-16 12:41:42 -0700 | [diff] [blame] | 3158 | <activity android:name=".panel.SettingsPanelActivity" |
| 3159 | android:label="@string/settings_panel_title" |
lindatseng | e972b16 | 2019-04-19 15:40:20 -0700 | [diff] [blame] | 3160 | android:theme="@style/Theme.Panel" |
lindatseng | 2943c1d | 2019-05-02 17:12:27 -0700 | [diff] [blame] | 3161 | android:launchMode="singleInstance" |
Matt Fritze | 90899e0 | 2018-10-16 12:41:42 -0700 | [diff] [blame] | 3162 | android:excludeFromRecents="true" |
Matthew Fritze | 735d6ef | 2018-12-05 07:55:12 -0800 | [diff] [blame] | 3163 | android:exported="true"> |
Matt Fritze | 90899e0 | 2018-10-16 12:41:42 -0700 | [diff] [blame] | 3164 | <intent-filter> |
Matthew Fritze | 735d6ef | 2018-12-05 07:55:12 -0800 | [diff] [blame] | 3165 | <action android:name="android.settings.panel.action.INTERNET_CONNECTIVITY" /> |
Matt Fritze | 90899e0 | 2018-10-16 12:41:42 -0700 | [diff] [blame] | 3166 | <category android:name="android.intent.category.DEFAULT" /> |
| 3167 | </intent-filter> |
Matthew Fritze | 735d6ef | 2018-12-05 07:55:12 -0800 | [diff] [blame] | 3168 | <intent-filter> |
Matthew Fritze | 63cce45 | 2019-03-05 08:17:37 -0800 | [diff] [blame] | 3169 | <action android:name="android.settings.panel.action.NFC" /> |
Matthew Fritze | 735d6ef | 2018-12-05 07:55:12 -0800 | [diff] [blame] | 3170 | <category android:name="android.intent.category.DEFAULT" /> |
| 3171 | </intent-filter> |
Matthew Fritze | 3f743ae | 2019-01-22 15:53:37 -0800 | [diff] [blame] | 3172 | <intent-filter> |
Matthew Fritze | 63cce45 | 2019-03-05 08:17:37 -0800 | [diff] [blame] | 3173 | <action android:name="android.settings.panel.action.WIFI" /> |
| 3174 | <category android:name="android.intent.category.DEFAULT" /> |
| 3175 | </intent-filter> |
| 3176 | <intent-filter> |
| 3177 | <action android:name="android.settings.panel.action.VOLUME" /> |
Matthew Fritze | 3f743ae | 2019-01-22 15:53:37 -0800 | [diff] [blame] | 3178 | <category android:name="android.intent.category.DEFAULT" /> |
| 3179 | </intent-filter> |
Matt Fritze | 90899e0 | 2018-10-16 12:41:42 -0700 | [diff] [blame] | 3180 | </activity> |
| 3181 | |
govenliu | d507b56 | 2019-11-21 09:36:58 +0800 | [diff] [blame] | 3182 | <activity android:name=".wifi.addappnetworks.AddAppNetworksActivity" |
| 3183 | android:label="@string/settings_panel_title" |
| 3184 | android:theme="@style/Theme.Panel" |
| 3185 | android:launchMode="singleInstance" |
| 3186 | android:excludeFromRecents="true" |
govenliu | 66dd758 | 2020-01-31 12:53:30 +0800 | [diff] [blame] | 3187 | android:configChanges="orientation|keyboardHidden|screenSize"> |
govenliu | d507b56 | 2019-11-21 09:36:58 +0800 | [diff] [blame] | 3188 | <intent-filter> |
| 3189 | <action android:name="android.settings.WIFI_ADD_NETWORKS" /> |
| 3190 | <category android:name="android.intent.category.DEFAULT" /> |
| 3191 | </intent-filter> |
| 3192 | </activity> |
| 3193 | |
hughchen | 2177813 | 2018-12-19 19:17:32 +0800 | [diff] [blame] | 3194 | <activity-alias |
| 3195 | android:name="MediaOutputSlice" |
| 3196 | android:label="@string/media_output_panel_title" |
| 3197 | android:permission="android.permission.BLUETOOTH_PRIVILEGED" |
| 3198 | android:targetActivity=".panel.SettingsPanelActivity"> |
| 3199 | <intent-filter> |
| 3200 | <action android:name="com.android.settings.panel.action.MEDIA_OUTPUT" /> |
| 3201 | <category android:name="android.intent.category.DEFAULT" /> |
| 3202 | </intent-filter> |
| 3203 | </activity-alias> |
| 3204 | |
Matthew Fritze | 7fddfeb | 2017-12-11 15:01:11 -0800 | [diff] [blame] | 3205 | <provider android:name=".slices.SettingsSliceProvider" |
Matthew Fritze | a4a3dff | 2018-02-28 08:15:55 -0800 | [diff] [blame] | 3206 | android:authorities="com.android.settings.slices;android.settings.slices" |
Jason Monk | f6edc7c | 2017-11-22 10:04:38 -0500 | [diff] [blame] | 3207 | android:exported="true" |
Fan Zhang | 671a39f | 2019-02-11 14:38:13 -0800 | [diff] [blame] | 3208 | android:grantUriPermissions="true" /> |
Mady Mellor | 7c74085 | 2017-11-03 09:17:05 -0700 | [diff] [blame] | 3209 | |
| 3210 | <receiver |
Matthew Fritze | e8d66bb | 2018-07-30 14:12:50 -0700 | [diff] [blame] | 3211 | android:name=".slices.SliceBroadcastReceiver" |
Fan Zhang | 0c7c59f | 2018-10-26 13:40:38 -0700 | [diff] [blame] | 3212 | android:exported="false" /> |
Matthew Fritze | e8d66bb | 2018-07-30 14:12:50 -0700 | [diff] [blame] | 3213 | |
| 3214 | <receiver |
| 3215 | android:name=".slices.SliceRelayReceiver" |
| 3216 | android:permission="android.permission.MANAGE_SLICE_PERMISSIONS" |
Fan Zhang | 0c7c59f | 2018-10-26 13:40:38 -0700 | [diff] [blame] | 3217 | android:exported="true" /> |
Mady Mellor | 7c74085 | 2017-11-03 09:17:05 -0700 | [diff] [blame] | 3218 | |
jackqdyulei | 821adce | 2018-01-29 19:20:37 -0800 | [diff] [blame] | 3219 | <!-- Couldn't be triggered from outside of settings. Statsd can trigger it because we send |
| 3220 | PendingIntent to it--> |
| 3221 | <receiver android:name=".fuelgauge.batterytip.AnomalyDetectionReceiver" |
| 3222 | android:exported="false" /> |
| 3223 | |
jackqdyulei | e1604d3 | 2018-01-31 20:24:47 -0800 | [diff] [blame] | 3224 | <receiver android:name=".fuelgauge.batterytip.AnomalyConfigReceiver"> |
| 3225 | <intent-filter> |
| 3226 | <action android:name="android.app.action.STATSD_STARTED"/> |
| 3227 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 3228 | </intent-filter> |
| 3229 | </receiver> |
| 3230 | |
jackqdyulei | 0fa413e | 2018-02-23 10:59:27 -0800 | [diff] [blame] | 3231 | <service android:name=".fuelgauge.batterytip.AnomalyCleanupJobService" |
jackqdyulei | 338ae2f | 2018-02-16 10:06:08 -0800 | [diff] [blame] | 3232 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 3233 | |
Lei Yu | 9a80d6e | 2018-03-15 15:55:07 -0700 | [diff] [blame] | 3234 | <service android:name=".fuelgauge.batterytip.AnomalyConfigJobService" |
| 3235 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 3236 | |
jackqdyulei | 3ee28c8 | 2018-02-20 15:07:26 -0800 | [diff] [blame] | 3237 | <service android:name=".fuelgauge.batterytip.AnomalyDetectionJobService" |
| 3238 | android:permission="android.permission.BIND_JOB_SERVICE" /> |
| 3239 | |
Sunny Shao | 195f61b | 2018-07-24 18:15:55 +0800 | [diff] [blame] | 3240 | <provider |
Fan Zhang | 5e6e6a1 | 2018-10-25 14:19:43 -0700 | [diff] [blame] | 3241 | android:name=".homepage.contextualcards.CardContentProvider" |
Sunny Shao | 195f61b | 2018-07-24 18:15:55 +0800 | [diff] [blame] | 3242 | android:authorities="com.android.settings.homepage.CardContentProvider" |
| 3243 | android:exported="true" |
| 3244 | android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA" /> |
| 3245 | |
Raff Tsai | 3936e9f | 2018-09-28 17:42:43 +0800 | [diff] [blame] | 3246 | <provider |
| 3247 | android:name=".homepage.contextualcards.SettingsContextualCardProvider" |
| 3248 | android:authorities="com.android.settings.homepage.contextualcards" |
| 3249 | android:permission="android.permission.WRITE_SETTINGS_HOMEPAGE_DATA" |
| 3250 | android:exported="true"> |
| 3251 | <intent-filter> |
| 3252 | <action android:name="android.content.action.SETTINGS_HOMEPAGE_DATA"/> |
| 3253 | </intent-filter> |
| 3254 | </provider> |
Arc Wang | 4591d82 | 2018-11-19 15:48:29 +0800 | [diff] [blame] | 3255 | |
| 3256 | <activity |
Arc Wang | e43bb77 | 2018-12-03 17:16:55 +0800 | [diff] [blame] | 3257 | android:name=".wifi.dpp.WifiDppConfiguratorActivity"> |
| 3258 | <intent-filter> |
| 3259 | <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_SCANNER"/> |
| 3260 | <action android:name="android.settings.WIFI_DPP_CONFIGURATOR_QR_CODE_GENERATOR"/> |
Arc Wang | e43bb77 | 2018-12-03 17:16:55 +0800 | [diff] [blame] | 3261 | <category android:name="android.intent.category.DEFAULT"/> |
| 3262 | </intent-filter> |
Arc Wang | c1036df | 2019-02-26 15:19:30 +0800 | [diff] [blame] | 3263 | <intent-filter> |
| 3264 | <action android:name="android.settings.PROCESS_WIFI_EASY_CONNECT_URI"/> |
| 3265 | <category android:name="android.intent.category.DEFAULT"/> |
| 3266 | <data android:scheme="DPP"/> |
| 3267 | </intent-filter> |
Arc Wang | e43bb77 | 2018-12-03 17:16:55 +0800 | [diff] [blame] | 3268 | </activity> |
Yi-Ling Chuang | 68f37a1 | 2018-11-20 19:51:13 +0800 | [diff] [blame] | 3269 | |
Arc Wang | 4ab0d16 | 2018-12-07 16:00:18 +0800 | [diff] [blame] | 3270 | <activity |
| 3271 | android:name=".wifi.dpp.WifiDppEnrolleeActivity"> |
| 3272 | <intent-filter> |
| 3273 | <action android:name="android.settings.WIFI_DPP_ENROLLEE_QR_CODE_SCANNER"/> |
| 3274 | <category android:name="android.intent.category.DEFAULT"/> |
| 3275 | </intent-filter> |
| 3276 | </activity> |
| 3277 | |
Yi-Ling Chuang | 68f37a1 | 2018-11-20 19:51:13 +0800 | [diff] [blame] | 3278 | <activity android:name=".homepage.contextualcards.ContextualCardFeedbackDialog" |
| 3279 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" /> |
manabu, shimoda | 9fae739 | 2017-11-08 11:32:31 +0900 | [diff] [blame] | 3280 | |
joshmccloskey | bba7632 | 2019-09-19 11:23:29 -0700 | [diff] [blame] | 3281 | <activity android:name=".homepage.contextualcards.FaceReEnrollDialog" |
| 3282 | android:theme="@android:style/Theme.DeviceDefault.Light.Dialog.Alert" /> |
| 3283 | |
manabu, shimoda | 9fae739 | 2017-11-08 11:32:31 +0900 | [diff] [blame] | 3284 | <activity |
| 3285 | android:name="Settings$WifiCallingDisclaimerActivity" |
| 3286 | android:label="@string/wifi_calling_settings_title" |
| 3287 | android:taskAffinity="com.android.settings"> |
| 3288 | <intent-filter> |
| 3289 | <action android:name="android.intent.action.MAIN" /> |
| 3290 | <category android:name="android.intent.category.DEFAULT" /> |
| 3291 | </intent-filter> |
| 3292 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3293 | android:value="com.android.settings.wifi.calling.WifiCallingDisclaimerFragment" /> |
| 3294 | </activity> |
Salvador Martinez | 3291704 | 2019-03-20 15:23:19 -0700 | [diff] [blame] | 3295 | |
| 3296 | <activity android:name="Settings$BatterySaverScheduleSettingsActivity" |
Jason Chiu | bbaf0a0 | 2019-11-05 12:30:58 +0800 | [diff] [blame] | 3297 | android:label="@string/battery_saver_schedule_settings_title"> |
Salvador Martinez | 3291704 | 2019-03-20 15:23:19 -0700 | [diff] [blame] | 3298 | <intent-filter> |
| 3299 | <action android:name="com.android.settings.BATTERY_SAVER_SCHEDULE_SETTINGS" /> |
| 3300 | <category android:name="android.intent.category.DEFAULT" /> |
| 3301 | </intent-filter> |
| 3302 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3303 | android:value="com.android.settings.fuelgauge.batterysaver.BatterySaverScheduleSettings" /> |
| 3304 | </activity> |
Steve Elliott | e772123 | 2019-05-22 14:13:29 -0400 | [diff] [blame] | 3305 | |
| 3306 | <activity android:name="Settings$GlobalActionsPanelSettingsActivity" |
| 3307 | android:label="@string/global_actions_panel_title"> |
| 3308 | <intent-filter> |
| 3309 | <action android:name="com.android.settings.GLOBAL_ACTIONS_PANEL_SETTINGS" /> |
| 3310 | <category android:name="android.intent.category.DEFAULT" /> |
| 3311 | </intent-filter> |
| 3312 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3313 | android:value="com.android.settings.gestures.GlobalActionsPanelSettings" /> |
| 3314 | </activity> |
| 3315 | |
Mehdi Alizadeh | 0355596 | 2019-12-13 15:31:53 -0800 | [diff] [blame] | 3316 | <activity |
| 3317 | android:name="Settings$GestureNavigationSettingsActivity" |
| 3318 | android:label="@string/gesture_settings_activity_title" |
| 3319 | android:enabled="true"> |
| 3320 | <intent-filter android:priority="32"> |
| 3321 | <action android:name="android.intent.action.MAIN" /> |
| 3322 | <category android:name="com.android.settings.SHORTCUT" /> |
| 3323 | </intent-filter> |
| 3324 | <intent-filter android:priority="1"> |
| 3325 | <action android:name="com.android.settings.GESTURE_NAVIGATION_SETTINGS" /> |
| 3326 | <category android:name="android.intent.category.DEFAULT" /> |
| 3327 | </intent-filter> |
| 3328 | <meta-data android:name="com.android.settings.FRAGMENT_CLASS" |
| 3329 | android:value="com.android.settings.gestures.GestureNavigationSettingsFragment" /> |
| 3330 | <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CONTROLLED" |
| 3331 | android:value="true" /> |
| 3332 | </activity> |
| 3333 | |
Dan Sandler | 3bd52dd | 2016-03-24 10:24:27 -0700 | [diff] [blame] | 3334 | <!-- This is the longest AndroidManifest.xml ever. --> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 3335 | </application> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 3336 | </manifest> |