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

Commit dcca0fba authored by Derek Tan's avatar Derek Tan
Browse files

Expose sendEnvelope.

Change-Id: Ic8226a6302ee6a9ff07f46d68c59007dd3599803
parent 0ad446f7
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -386,6 +386,13 @@ public class UiccCard {
                data, mHandler.obtainMessage(EVENT_TRANSMIT_APDU_DONE, response));
                data, mHandler.obtainMessage(EVENT_TRANSMIT_APDU_DONE, response));
    }
    }


    /**
     * Exposes {@link CommandsInterface.sendEnvelope}
     */
    public void sendEnvelope(String contents, Message response) {
        mCi.sendEnvelope(contents, response);
    }

    private void log(String msg) {
    private void log(String msg) {
        Rlog.d(LOG_TAG, msg);
        Rlog.d(LOG_TAG, msg);
    }
    }