Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Application(val identifier: String = "", val name: String = "", val parameters: Parameters = Parameters(), val pid: Int = 0)

This data class represents the application.

Link copied to clipboard
@Serializable
data class ApplicationsResponse(val applications: List<Application>)

This data class represents the applications response.

Link copied to clipboard
@Serializable
data class Device(val deviceDetails: DeviceDetails = DeviceDetails())
Link copied to clipboard
@Serializable
data class DeviceDetails(val icon: Icon? = null, val id: String = "", val isLost: Boolean? = null, val name: String = "", val type: String = "")
Link copied to clipboard
@Serializable
data class DevicesResponse(val devices: List<Device>)

This data class represents the devices response.

Link copied to clipboard
@Serializable
data class Icon(val format: String, val height: Int, val image: List<Int>, val width: Int)
Link copied to clipboard
@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.