Blocked

data class Blocked @JvmOverloads constructor(val message: String?, val otherPackageName: String? = null) : InstallFailure

The operation failed because it was blocked. For example, a device policy may be blocking the operation, a package verifier may have blocked the operation, or the app may be required for core system operation.

The result may also contain otherPackageName with the specific package blocking the install.

Constructors

Link copied to clipboard
constructor(message: String?, otherPackageName: String? = null)

Properties

Link copied to clipboard
open override val message: String?

Detailed string representation of the status, including raw details that are useful for debugging.

Link copied to clipboard