summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorSongchun Fan <schfan@google.com>2019-12-25 12:32:42 -0800
committerSongchun Fan <schfan@google.com>2019-12-25 12:58:49 -0800
commit05d1689dab1c5611338bd43b60872eb9b0e65e45 (patch)
treeeb13346518efc931e25d2a44bdd0c1d3333f6039 /core/java
parent1e4c5237dfd438a167328187806e44be28630edb (diff)
Make Context.ACTION_LOAD_DATA a system API
This intent is used by Incremental's adb data loader which is a system app. This means the intent needs to be a system API. BUG: 146763909 Test: atest CtsIntentSignatureTestCases Change-Id: Ibf23e3c28a771687bcd72abea9ae2639f99dff7f
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/content/Intent.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java
index 7967708ce19a..3bb0f9222237 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -4224,9 +4224,10 @@ public class Intent implements Parcelable, Cloneable {
public static final String ACTION_SERVICE_STATE = "android.intent.action.SERVICE_STATE";
/**
- * Used for looking up a Data Loader Service providers.
+ * Used for looking up a Data Loader Service provider.
* @hide
*/
+ @SystemApi
@SdkConstant(SdkConstant.SdkConstantType.SERVICE_ACTION)
public static final String ACTION_LOAD_DATA = "android.intent.action.LOAD_DATA";