AppInfo

data class AppInfo @JvmOverloads constructor(val packageName: String, val activityName: String, val user: Int = 0) : Parcelable(source)

Represents information about an application, including its package name, activity name, and user ID. This class is Parcelable, allowing it to be passed between components.

Constructors

Link copied to clipboard
constructor(packageName: String, activityName: String, user: Int = 0)

Properties

Link copied to clipboard

The name of the activity within the application. Defaults to an empty string.

Link copied to clipboard

The package name of the application.

Link copied to clipboard
val user: Int = 0

The user ID associated with the application. Defaults to 0.