diff options
| -rw-r--r-- | api/system-current.txt | 2 | ||||
| -rw-r--r-- | core/java/android/content/Intent.java | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index 6b0f8aafcb27..45a93714b22c 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 116224b35d06..81aea8d178d5 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 { * <p>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 { * <p>Output: nothing. * @hide */ + @SystemApi + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_CALL_PRIVILEGED = "android.intent.action.CALL_PRIVILEGED"; /** |