diff options
| author | 2018-10-09 18:06:05 +0000 | |
|---|---|---|
| committer | 2018-10-09 18:06:05 +0000 | |
| commit | b7c0727c156f710266f33092d3b49c6781df0b6d (patch) | |
| tree | c820959e789346ca38e17eeccef9e3bf94b2b84b | |
| parent | 0d3f4e61c99057c7e40c9159ba08286c34cf797c (diff) | |
| parent | 97b6b00255752367f17c7ae2bf6286613b879906 (diff) | |
Merge "Add Call Redirection Default Application in Settings"
| -rw-r--r-- | core/java/android/provider/Settings.java | 9 | ||||
| -rw-r--r-- | core/tests/coretests/src/android/provider/SettingsBackupTest.java | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 29dbb83ca591..7370029878a0 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -7299,6 +7299,15 @@ public final class Settings { public static final String DIALER_DEFAULT_APPLICATION = "dialer_default_application"; /** + * Specifies the package name currently configured to be the default application to perform + * the user-defined call redirection service with Telecom. + * @hide + */ + @UnsupportedAppUsage + public static final String CALL_REDIRECTION_DEFAULT_APPLICATION = + "call_redirection_default_application"; + + /** * Specifies the package name currently configured to be the emergency assistance application * * @see android.telephony.TelephonyManager#ACTION_EMERGENCY_ASSISTANCE diff --git a/core/tests/coretests/src/android/provider/SettingsBackupTest.java b/core/tests/coretests/src/android/provider/SettingsBackupTest.java index 23be634da05f..32790e534e6b 100644 --- a/core/tests/coretests/src/android/provider/SettingsBackupTest.java +++ b/core/tests/coretests/src/android/provider/SettingsBackupTest.java @@ -527,6 +527,7 @@ public class SettingsBackupTest { Settings.Secure.BACKUP_ENABLED, Settings.Secure.BACKUP_PROVISIONED, Settings.Secure.BACKUP_TRANSPORT, + Settings.Secure.CALL_REDIRECTION_DEFAULT_APPLICATION, Settings.Secure.CAMERA_LIFT_TRIGGER_ENABLED, // Candidate for backup? Settings.Secure.CARRIER_APPS_HANDLED, Settings.Secure.CMAS_ADDITIONAL_BROADCAST_PKG, |