summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Xiangyu/Malcolm Chen <refuhoo@google.com> 2019-12-10 23:38:05 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2019-12-10 23:38:05 +0000
commitbaad1e6c698ef1be8d07ac95cac37fbeb03d3563 (patch)
treebf301e471f7a6d0e134a147ca96de2ebd51fcb72
parent15c52b42481aa8ebe67b545e024514fa644fafc9 (diff)
parente6c536a1471d41c4bdf890270042915198abc9f5 (diff)
Merge "Define ril request for enableUiccApplications."
-rw-r--r--telephony/java/com/android/internal/telephony/RILConstants.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java
index 22168c54510b..9cbcd7fc6b04 100644
--- a/telephony/java/com/android/internal/telephony/RILConstants.java
+++ b/telephony/java/com/android/internal/telephony/RILConstants.java
@@ -489,6 +489,8 @@ public interface RILConstants {
int RIL_REQUEST_EMERGENCY_DIAL = 205;
int RIL_REQUEST_GET_PHONE_CAPABILITY = 206;
int RIL_REQUEST_SWITCH_DUAL_SIM_CONFIG = 207;
+ int RIL_REQUEST_ENABLE_UICC_APPLICATIONS = 208;
+ int RIL_REQUEST_GET_UICC_APPLICATIONS_ENABLEMENT = 209;
/* Responses begin */
int RIL_RESPONSE_ACKNOWLEDGEMENT = 800;
@@ -552,4 +554,5 @@ public interface RILConstants {
int RIL_UNSOL_ICC_SLOT_STATUS = 1100;
int RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG = 1101;
int RIL_UNSOL_EMERGENCY_NUMBER_LIST = 1102;
+ int RIL_UNSOL_UICC_APPLICATIONS_ENABLEMENT_CHANGED = 1103;
}