Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c88545f authored by Jakob Schneider's avatar Jakob Schneider
Browse files

Fix some API comments for archive APIs.

Test: N/A
Bug: 315045856
Change-Id: Ia0c6e7b5d1939d20a893f6b591b8f09a3a52d448
parent b813ecf9
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -371,7 +371,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 =
@@ -388,6 +389,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)
@@ -696,7 +700,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;
@@ -704,7 +709,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;