Class ExternallyHostedApk
Defines an APK available for this application that is hosted externally and not uploaded to Google Play. This function is only available to organizations using Managed Play whose application is configured to restrict distribution to the organizations.
Implements
Inherited Members
Namespace: Google.Apis.AndroidPublisher.v3.Data
Assembly: Google.Apis.AndroidPublisher.v3.dll
Syntax
public class ExternallyHostedApk : IDirectResponseSchema
Properties
ApplicationLabel
The application label.
Declaration
[JsonProperty("applicationLabel")]
public virtual string ApplicationLabel { get; set; }
Property Value
Type | Description |
---|---|
string |
CertificateBase64s
A certificate (or array of certificates if a certificate-chain is used) used to sign this APK, represented as a base64 encoded byte array.
Declaration
[JsonProperty("certificateBase64s")]
public virtual IList<string> CertificateBase64s { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExternallyHostedUrl
The URL at which the APK is hosted. This must be an https URL.
Declaration
[JsonProperty("externallyHostedUrl")]
public virtual string ExternallyHostedUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
FileSha1Base64
The sha1 checksum of this APK, represented as a base64 encoded byte array.
Declaration
[JsonProperty("fileSha1Base64")]
public virtual string FileSha1Base64 { get; set; }
Property Value
Type | Description |
---|---|
string |
FileSha256Base64
The sha256 checksum of this APK, represented as a base64 encoded byte array.
Declaration
[JsonProperty("fileSha256Base64")]
public virtual string FileSha256Base64 { get; set; }
Property Value
Type | Description |
---|---|
string |
FileSize
The file size in bytes of this APK.
Declaration
[JsonProperty("fileSize")]
public virtual long? FileSize { get; set; }
Property Value
Type | Description |
---|---|
long? |
IconBase64
The icon image from the APK, as a base64 encoded byte array.
Declaration
[JsonProperty("iconBase64")]
public virtual string IconBase64 { get; set; }
Property Value
Type | Description |
---|---|
string |
MaximumSdk
The maximum SDK supported by this APK (optional).
Declaration
[JsonProperty("maximumSdk")]
public virtual int? MaximumSdk { get; set; }
Property Value
Type | Description |
---|---|
int? |
MinimumSdk
The minimum SDK targeted by this APK.
Declaration
[JsonProperty("minimumSdk")]
public virtual int? MinimumSdk { get; set; }
Property Value
Type | Description |
---|---|
int? |
NativeCodes
The native code environments supported by this APK (optional).
Declaration
[JsonProperty("nativeCodes")]
public virtual IList<string> NativeCodes { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
PackageName
The package name.
Declaration
[JsonProperty("packageName")]
public virtual string PackageName { get; set; }
Property Value
Type | Description |
---|---|
string |
UsesFeatures
The features required by this APK (optional).
Declaration
[JsonProperty("usesFeatures")]
public virtual IList<string> UsesFeatures { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
UsesPermissions
The permissions requested by this APK.
Declaration
[JsonProperty("usesPermissions")]
public virtual IList<UsesPermission> UsesPermissions { get; set; }
Property Value
Type | Description |
---|---|
IList<UsesPermission> |
VersionCode
The version code of this APK.
Declaration
[JsonProperty("versionCode")]
public virtual int? VersionCode { get; set; }
Property Value
Type | Description |
---|---|
int? |
VersionName
The version name of this APK.
Declaration
[JsonProperty("versionName")]
public virtual string VersionName { get; set; }
Property Value
Type | Description |
---|---|
string |