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