diff options
| author | Etan Cohen <etancohen@google.com> | 2015-05-04 18:01:47 -0700 |
|---|---|---|
| committer | Linux Build Service Account <lnxbuild@localhost> | 2015-10-06 03:27:13 -0600 |
| commit | fe2ae4daae9a12f716c9c46f5320676fb19f5c6a (patch) | |
| tree | ee057ebf0d388c50478b7dd26330a861c98b6599 | |
| parent | 524bc996d6a067d8378805071f18239b65b7354e (diff) | |
| download | frameworks_base-fe2ae4daae9a12f716c9c46f5320676fb19f5c6a.zip frameworks_base-fe2ae4daae9a12f716c9c46f5320676fb19f5c6a.tar.gz frameworks_base-fe2ae4daae9a12f716c9c46f5320676fb19f5c6a.tar.bz2 | |
Add VT over IMS global setting.
Bug: 20750301
Change-Id: Ifb6e832aa67e50aef247a19ef7a7f64096a67dd6
| -rwxr-xr-x | core/java/android/provider/Settings.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 54f2e1e..e6c9bc9 100755 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -7667,7 +7667,7 @@ public final class Settings { public static final String REQUIRE_PASSWORD_TO_DECRYPT = "require_password_to_decrypt"; /** - * Whether the Volte/VT is enabled + * Whether the Volte is enabled * <p> * Type: int (0 for false, 1 for true) * @hide @@ -7675,6 +7675,15 @@ public final class Settings { public static final String ENHANCED_4G_MODE_ENABLED = "volte_vt_enabled"; /** + * Whether VT (Video Telephony over IMS) is enabled + * <p> + * Type: int (0 for false, 1 for true) + * + * @hide + */ + public static final String VT_IMS_ENABLED = "vt_ims_enabled"; + + /** * Whether WFC is enabled * <p> * Type: int (0 for false, 1 for true) |
