Conflict

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

The operation failed because it conflicts (or is inconsistent with) with another package already installed on the device. For example, an existing permission, incompatible certificates, etc. The user may be able to uninstall another app to fix the issue.

The result may also contain otherPackageName with the specific package identified as the cause of the conflict.

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