summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Hyunho Shin <hhshin@google.com> 2022-01-24 23:57:17 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-01-24 23:57:17 +0000
commit694a5dd282c68d698c8be9a1e506a828db337e73 (patch)
tree84f20d761e1eb6489e2590b498ad2fbbc6c99fff
parent71c4049fc6ba470437aab00249f1e9ff53b02a0a (diff)
parent5f0851dfe8c0f2ea21ecebdaed12156d231d3c68 (diff)
Merge "Add new publish trigger type"
-rw-r--r--core/api/system-current.txt1
-rw-r--r--telephony/java/android/telephony/ims/RcsUceAdapter.java10
2 files changed, 10 insertions, 1 deletions
diff --git a/core/api/system-current.txt b/core/api/system-current.txt
index da4147b97550..ce2feac315f3 100644
--- a/core/api/system-current.txt
+++ b/core/api/system-current.txt
@@ -14762,6 +14762,7 @@ package android.telephony.ims {
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_3G = 6; // 0x6
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_EHRPD = 4; // 0x4
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_HSPAPLUS = 5; // 0x5
+ field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_INTERNET_PDN = 12; // 0xc
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_IWLAN = 9; // 0x9
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_LTE_VOPS_DISABLED = 2; // 0x2
field public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_LTE_VOPS_ENABLED = 3; // 0x3
diff --git a/telephony/java/android/telephony/ims/RcsUceAdapter.java b/telephony/java/android/telephony/ims/RcsUceAdapter.java
index 61de3ac2b25e..154bb11db5e3 100644
--- a/telephony/java/android/telephony/ims/RcsUceAdapter.java
+++ b/telephony/java/android/telephony/ims/RcsUceAdapter.java
@@ -268,6 +268,13 @@ public class RcsUceAdapter {
@SystemApi
public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_NR5G_VOPS_ENABLED = 11;
+ /**
+ * A capability update has been requested due to IMS being registered over INTERNET PDN.
+ * @hide
+ */
+ @SystemApi
+ public static final int CAPABILITY_UPDATE_TRIGGER_MOVE_TO_INTERNET_PDN = 12;
+
/**@hide*/
@Retention(RetentionPolicy.SOURCE)
@IntDef(prefix = "ERROR_", value = {
@@ -282,7 +289,8 @@ public class RcsUceAdapter {
CAPABILITY_UPDATE_TRIGGER_MOVE_TO_WLAN,
CAPABILITY_UPDATE_TRIGGER_MOVE_TO_IWLAN,
CAPABILITY_UPDATE_TRIGGER_MOVE_TO_NR5G_VOPS_DISABLED,
- CAPABILITY_UPDATE_TRIGGER_MOVE_TO_NR5G_VOPS_ENABLED
+ CAPABILITY_UPDATE_TRIGGER_MOVE_TO_NR5G_VOPS_ENABLED,
+ CAPABILITY_UPDATE_TRIGGER_MOVE_TO_INTERNET_PDN
})
public @interface StackPublishTriggerType {}