diff --git a/api/system-current.txt b/api/system-current.txt index 649f2cf68652c..c248bc7ce88d9 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -9763,6 +9763,8 @@ package android.content { field public static final java.lang.String ACTION_BUG_REPORT = "android.intent.action.BUG_REPORT"; field public static final java.lang.String ACTION_CALL = "android.intent.action.CALL"; field public static final java.lang.String ACTION_CALL_BUTTON = "android.intent.action.CALL_BUTTON"; + field public static final java.lang.String ACTION_CALL_EMERGENCY = "android.intent.action.CALL_EMERGENCY"; + field public static final java.lang.String ACTION_CALL_PRIVILEGED = "android.intent.action.CALL_PRIVILEGED"; field public static final java.lang.String ACTION_CAMERA_BUTTON = "android.intent.action.CAMERA_BUTTON"; field public static final java.lang.String ACTION_CARRIER_SETUP = "android.intent.action.CARRIER_SETUP"; field public static final java.lang.String ACTION_CHOOSER = "android.intent.action.CHOOSER"; diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 116224b35d06b..81aea8d178d5b 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1093,6 +1093,8 @@ public class Intent implements Parcelable, Cloneable { *
Output: nothing. * @hide */ + @SystemApi + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_CALL_EMERGENCY = "android.intent.action.CALL_EMERGENCY"; /** * Activity action: Perform a call to any number (emergency or not) @@ -1102,6 +1104,8 @@ public class Intent implements Parcelable, Cloneable { *
Output: nothing. * @hide */ + @SystemApi + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_CALL_PRIVILEGED = "android.intent.action.CALL_PRIVILEGED"; /**