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

Commit cbd31113 authored by Amit Mahajan's avatar Amit Mahajan
Browse files

Use internal namespace for STK intents.

Test: none
Bug: 36976577
Change-Id: I3f59c061f075b4b6978960f79034478fe87d9916
parent 211f45b2
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -30,11 +30,11 @@ public interface AppInterface {
     * proactive command, session end, ALPHA during STK CC arrive.
     */
    public static final String CAT_CMD_ACTION =
                                    "android.intent.action.stk.command";
                                    "com.android.internal.stk.command";
    public static final String CAT_SESSION_END_ACTION =
                                    "android.intent.action.stk.session_end";
                                    "com.android.internal.stk.session_end";
    public static final String CAT_ALPHA_NOTIFY_ACTION =
                                    "android.intent.action.stk.alpha_notify";
                                    "com.android.internal.stk.alpha_notify";

    //This is used to send ALPHA string from card to STK App.
    public static final String ALPHA_STRING = "alpha_string";
@@ -45,7 +45,7 @@ public interface AppInterface {
    public static final String CARD_STATUS = "card_status";
    //Intent's actions are broadcasted by Telephony once IccRefresh occurs.
    public static final String CAT_ICC_STATUS_CHANGE =
                                    "android.intent.action.stk.icc_status_change";
                                    "com.android.internal.stk.icc_status_change";

    // Permission required by STK command receiver
    public static final String STK_PERMISSION = "android.permission.RECEIVE_STK_COMMANDS";