SplitInstallSessionStatus
public
abstract
@interface
SplitInstallSessionStatus
implements
Annotation
com.google.android.play.core.splitinstall.model.SplitInstallSessionStatus |
Status of a download / install.
Summary
Constants | |
---|---|
int |
CANCELED
The split download has been cancelled. |
int |
CANCELING
The split download is being cancelled. |
int |
DOWNLOADED
The split is downloaded but not yet installed. |
int |
DOWNLOADING
The split download is in progress. |
int |
FAILED
Split download or installation has failed. |
int |
INSTALLED
Installation is complete; the splits are available to the client app. |
int |
INSTALLING
The splits are being installed. |
int |
PENDING
The download is pending and will be processed soon. |
int |
REQUIRES_USER_CONFIRMATION
The download requires user confirmation. |
int |
UNKNOWN
|
Inherited methods | |
---|---|
![]()
java.lang.annotation.Annotation
|
Constants
CANCELED
int CANCELED
The split download has been cancelled. Cancellation may have been triggered by the user or the
client app itself via cancelInstall(int)
.
Constant Value: 7 (0x00000007)
CANCELING
int CANCELING
The split download is being cancelled.
Constant Value: 9 (0x00000009)
DOWNLOADED
int DOWNLOADED
The split is downloaded but not yet installed. The split will be installed in the background by the Play Store. Install SplitCompat in your app for immediate access to modules.
Constant Value: 3 (0x00000003)
DOWNLOADING
int DOWNLOADING
The split download is in progress.
Constant Value: 2 (0x00000002)
FAILED
int FAILED
Split download or installation has failed.
Constant Value: 6 (0x00000006)
INSTALLED
int INSTALLED
Installation is complete; the splits are available to the client app.
Constant Value: 5 (0x00000005)
INSTALLING
int INSTALLING
The splits are being installed.
Constant Value: 4 (0x00000004)
PENDING
int PENDING
The download is pending and will be processed soon.
Constant Value: 1 (0x00000001)
REQUIRES_USER_CONFIRMATION
int REQUIRES_USER_CONFIRMATION
The download requires user confirmation.
Confirmation can be requested by the developer by calling ERROR(/SplitInstallManager#startConfirmationDialogForResult)
, which pops up a confirmation dialog.
Constant Value: 8 (0x00000008)
UNKNOWN
int UNKNOWN
Constant Value: 0 (0x00000000)
Annotations
Classes