Class MobileDevice.ApplicationsData
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.
Inherited Members
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class MobileDevice.ApplicationsData
Properties
DisplayName
The application's display name. An example is Browser
.
Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string |
PackageName
The application's package name. An example is com.android.browser
.
Declaration
[JsonProperty("packageName")]
public virtual string PackageName { get; set; }
Property Value
Type | Description |
---|---|
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
.
Declaration
[JsonProperty("permission")]
public virtual IList<string> Permission { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
VersionCode
The application's version code. An example is 13
.
Declaration
[JsonProperty("versionCode")]
public virtual int? VersionCode { get; set; }
Property Value
Type | Description |
---|---|
int? |
VersionName
The application's version name. An example is 3.2-140714
.
Declaration
[JsonProperty("versionName")]
public virtual string VersionName { get; set; }
Property Value
Type | Description |
---|---|
string |