Parameters

@Serializable
data class Parameters(val build: String = "", val dataDir: String = "", val debuggable: Boolean? = false, val ppid: Int? = 0, val sources: List<String> = listOf(), val started: String? = "", val targetSdk: Int = 0, val user: String? = "", val version: String = "")

This data class represents the parameters of the application.

Constructors

Link copied to clipboard
constructor(build: String = "", dataDir: String = "", debuggable: Boolean? = false, ppid: Int? = 0, sources: List<String> = listOf(), started: String? = "", targetSdk: Int = 0, user: String? = "", version: String = "")

Properties

Link copied to clipboard

The build of the application.

Link copied to clipboard

The data directory of the application.

Link copied to clipboard
val debuggable: Boolean? = false

The debuggable state of the application.

Link copied to clipboard
val ppid: Int? = 0

The parent process id of the application.

Link copied to clipboard

The sources of the application.

Link copied to clipboard

The start time of the application.

Link copied to clipboard
val targetSdk: Int = 0

The target sdk of the application.

Link copied to clipboard
val user: String?

The user of the application.

Link copied to clipboard

The version of the application.