Merge "Add result code for eUICC card not found."

am: 45277c7aca

Change-Id: Ib3ee5ff8cfcc18ac6a9e616e34ef778fe59b111c
This commit is contained in:
Holly Jiuyu Sun
2018-03-02 23:21:13 +00:00
committed by android-build-merger
2 changed files with 4 additions and 0 deletions

View File

@@ -4505,6 +4505,7 @@ package android.telephony.euicc {
field public static final int RESET_OPTION_DELETE_FIELD_LOADED_TEST_PROFILES = 2; // 0x2
field public static final int RESET_OPTION_DELETE_OPERATIONAL_PROFILES = 1; // 0x1
field public static final int RESET_OPTION_RESET_DEFAULT_SMDP_ADDRESS = 4; // 0x4
field public static final int RESULT_EUICC_NOT_FOUND = -2; // 0xfffffffe
field public static final int RESULT_OK = 0; // 0x0
field public static final int RESULT_UNKNOWN_ERROR = -1; // 0xffffffff
}

View File

@@ -115,6 +115,9 @@ public class EuiccCardManager {
/** Result code of an unknown error. */
public static final int RESULT_UNKNOWN_ERROR = -1;
/** Result code when the eUICC card with the given card Id is not found. */
public static final int RESULT_EUICC_NOT_FOUND = -2;
/**
* Callback to receive the result of an eUICC card API.
*