Class ApkManifest
Assembly: Google.Apis.Testing.v1.dll
Syntax
public class ApkManifest : IDirectResponseSchema
Properties
ApplicationLabel
User-readable name for the application.
Declaration
[JsonProperty("applicationLabel")]
public virtual string ApplicationLabel { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
IntentFilters
Declaration
[JsonProperty("intentFilters")]
public virtual IList<IntentFilter> IntentFilters { get; set; }
Property Value
MaxSdkVersion
Maximum API level on which the application is designed to run.
Declaration
[JsonProperty("maxSdkVersion")]
public virtual int? MaxSdkVersion { get; set; }
Property Value
Meta-data tags defined in the manifest.
Declaration
[JsonProperty("metadata")]
public virtual IList<Metadata> Metadata { get; set; }
Property Value
MinSdkVersion
Minimum API level required for the application to run.
Declaration
[JsonProperty("minSdkVersion")]
public virtual int? MinSdkVersion { get; set; }
Property Value
PackageName
Full Java-style package name for this application, e.g. "com.example.foo".
Declaration
[JsonProperty("packageName")]
public virtual string PackageName { get; set; }
Property Value
Services
Services contained in the tag.
Declaration
[JsonProperty("services")]
public virtual IList<Service> Services { get; set; }
Property Value
TargetSdkVersion
Specifies the API Level on which the application is designed to run.
Declaration
[JsonProperty("targetSdkVersion")]
public virtual int? TargetSdkVersion { get; set; }
Property Value
UsesFeature
Feature usage tags defined in the manifest.
Declaration
[JsonProperty("usesFeature")]
public virtual IList<UsesFeature> UsesFeature { get; set; }
Property Value
UsesPermission
Declaration
[JsonProperty("usesPermission")]
public virtual IList<string> UsesPermission { get; set; }
Property Value
Permissions declared to be used by the application
Declaration
[JsonProperty("usesPermissionTags")]
public virtual IList<UsesPermissionTag> UsesPermissionTags { get; set; }
Property Value
VersionCode
Version number used internally by the app.
Declaration
[JsonProperty("versionCode")]
public virtual long? VersionCode { get; set; }
Property Value
VersionName
Version number shown to users.
Declaration
[JsonProperty("versionName")]
public virtual string VersionName { get; set; }
Property Value
Implements