Table of Contents

Class MobileDevice.ApplicationsData

Namespace
Google.Apis.Admin.Directory.directory_v1.Data
Assembly
Google.Apis.Admin.Directory.directory_v1.dll

The list of applications installed on an Android mobile device. It is not applicable to Google Sync and iOS devices. The list includes any Android applications that access Google Workspace data. When updating an applications list, it is important to note that updates replace the existing list. If the Android device has two existing applications and the API updates the list with five applications, the is now the updated list of five applications.

public class MobileDevice.ApplicationsData
Inheritance
MobileDevice.ApplicationsData
Inherited Members

Constructors

ApplicationsData()

public ApplicationsData()

Properties

DisplayName

The application's display name. An example is Browser.

public virtual string DisplayName { get; set; }

Property Value

string

PackageName

The application's package name. An example is com.android.browser.

public virtual string PackageName { get; set; }

Property Value

string

Permission

The list of permissions of this application. These can be either a standard Android permission or one defined by the application, and are found in an application's Android manifest. Examples of a Calendar application's permissions are READ_CALENDAR, or MANAGE_ACCOUNTS.

public virtual IList<string> Permission { get; set; }

Property Value

IList<string>

VersionCode

The application's version code. An example is 13.

public virtual int? VersionCode { get; set; }

Property Value

int?

VersionName

The application's version name. An example is 3.2-140714.

public virtual string VersionName { get; set; }

Property Value

string