Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f01f427 authored by Holly Jiuyu Sun's avatar Holly Jiuyu Sun Committed by android-build-merger
Browse files

Merge "Add result code for eUICC card not found." am: 45277c7a

am: 32c5a97a

Change-Id: I43b81392646b3f2463a3df37eecbf4ffa7a653d0
parents 1be320a4 32c5a97a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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
  }
+3 −0
Original line number Diff line number Diff line
@@ -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.
     *