diff options
author | 2023-12-07 16:58:46 +0000 | |
---|---|---|
committer | 2023-12-07 16:58:46 +0000 | |
commit | 9eb42136b1a64aef812940d5b091de9ab39f910f (patch) | |
tree | 26aab380a394ef71f0c029c476b86ee09974108c | |
parent | c9d14bbbabe240b8d04122ae67c2ed5b7d51ab95 (diff) | |
parent | 2c88545f84ab44496ec7e6f395b5817c0bfe0bb6 (diff) |
Merge "Fix some API comments for archive APIs." into main
-rw-r--r-- | core/java/android/content/pm/PackageInstaller.java | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/core/java/android/content/pm/PackageInstaller.java b/core/java/android/content/pm/PackageInstaller.java index 457fd63fa3d8..51f3d8ebab01 100644 --- a/core/java/android/content/pm/PackageInstaller.java +++ b/core/java/android/content/pm/PackageInstaller.java @@ -379,7 +379,8 @@ public class PackageInstaller { /** * If true, the requestor of the unarchival has specified that the app should be unarchived - * for all users. + * for all users. Sent as part of the {@link android.content.Intent#ACTION_UNARCHIVE_PACKAGE} + * intent. */ @FlaggedApi(Flags.FLAG_ARCHIVING) public static final String EXTRA_UNARCHIVE_ALL_USERS = @@ -396,6 +397,9 @@ public class PackageInstaller { * with an intent for a corresponding follow-up action (e.g. storage clearing dialog) or a * failure dialog. * + * <p> Used as part of {@link #requestUnarchive} to return the status of the unarchival through + * the {@link IntentSender}. + * * @see #requestUnarchive */ @FlaggedApi(Flags.FLAG_ARCHIVING) @@ -704,7 +708,8 @@ public class PackageInstaller { /** * The installer responsible for the unarchival is disabled. * - * <p> Should only be used by the system. + * <p> The system will return this status if appropriate. Installers do not need to verify for + * this error. */ @FlaggedApi(Flags.FLAG_ARCHIVING) public static final int UNARCHIVAL_ERROR_INSTALLER_DISABLED = 4; @@ -712,7 +717,8 @@ public class PackageInstaller { /** * The installer responsible for the unarchival has been uninstalled * - * <p> Should only be used by the system. + * <p> The system will return this status if appropriate. Installers do not need to verify for + * this error. */ @FlaggedApi(Flags.FLAG_ARCHIVING) public static final int UNARCHIVAL_ERROR_INSTALLER_UNINSTALLED = 5; |