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

Commit bab87b02 authored by Amit Mahajan's avatar Amit Mahajan Committed by android-build-merger
Browse files

Merge "Use internal namespace for STK intents." into oc-dev am: 76e7c597

am: 0e506036

Change-Id: I5e82b110826dbbe11f5b9ce9c12ac9d4cbd9b689
parents d4a6ef48 0e506036
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";