AppProcessInfo

Information about a process. It contains process name, start time, app Uid, app Pid, seinfo tag, hash of the base APK.

JSON representation
{
  "processName": string,
  "startTime": string,
  "uid": integer,
  "pid": integer,
  "seinfo": string,
  "apkSha256Hash": string,
  "packageNames": [
    string
  ]
}
Fields
processName

string

Process name.

startTime

string (Timestamp format)

Process start time.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

uid

integer

UID of the package.

pid

integer

Process ID.

seinfo

string

SELinux policy info.

apkSha256Hash

string

SHA-256 hash of the base APK, in hexadecimal format.

packageNames[]

string

Package names of all packages that are associated with the particular user ID. In most cases, this will be a single package name, the package that has been assigned that user ID. If multiple application share a UID then all packages sharing UID will be included.