diff options
| author | Svetoslav Ganov <svetoslavganov@google.com> | 2021-04-09 15:31:00 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-04-09 15:31:00 +0000 |
| commit | ae4d48ebec8b873d59ef70ccea13de0ebceb7354 (patch) | |
| tree | 3831d9f21b734baf456f8a502e576e86affb3672 /core/java | |
| parent | ac816bd1ec596c1c0ddfcbc47c6219ba89e445b1 (diff) | |
| parent | 0d6d9f972efef6fef43dfe22cf593084a0ff0f76 (diff) | |
Merge "Add AR intent to ingest exempt attribution tags" into sc-dev
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/content/Intent.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index f4ae2c512c88..8a8dfd197157 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -849,6 +849,21 @@ public class Intent implements Parcelable, Cloneable { = "android.intent.action.SHOW_APP_INFO"; /** + * Activity Action: Placeholder that the component handling it can do activity + * recognition. Can be placed on a service. Only one service per package is + * supported. + * + * <p>Input: Nothing.</p> + * <p>Output: Nothing </p> + * + * @hide + */ + @SystemApi + @SdkConstant(SdkConstantType.SERVICE_ACTION) + public static final String ACTION_ACTIVITY_RECOGNIZER = + "android.intent.action.ACTIVITY_RECOGNIZER"; + + /** * Represents a shortcut/live folder icon resource. * * @see Intent#ACTION_CREATE_SHORTCUT |
