Show / Hide Table of Contents

Class DeviceSpec

The device spec used to generate a system APK.

Inheritance
System.Object
DeviceSpec
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AndroidPublisher.v3.Data
Assembly: Google.Apis.AndroidPublisher.v3.dll
Syntax
public class DeviceSpec : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ScreenDensity

Screen dpi.

Declaration
[JsonProperty("screenDensity")]
public virtual long? ScreenDensity { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SupportedAbis

Supported ABI architectures in the order of preference. The values should be the string as reported by the platform, e.g. "armeabi-v7a", "x86_64".

Declaration
[JsonProperty("supportedAbis")]
public virtual IList<string> SupportedAbis { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

SupportedLocales

All installed locales represented as BCP-47 strings, e.g. "en-US".

Declaration
[JsonProperty("supportedLocales")]
public virtual IList<string> SupportedLocales { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top