class Google::Apis::AndroidpublisherV3::DeviceSpec
The device spec used to generate a system APK.
Attributes
screen_density[RW]
Screen dpi. Corresponds to the JSON property `screenDensity` @return [Fixnum]
supported_abis[RW]
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”. Corresponds to the JSON property `supportedAbis` @return [Array<String>]
supported_locales[RW]
All installed locales represented as BCP-47 strings, e.g. “en-US”. Corresponds to the JSON property `supportedLocales` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 485 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidpublisher_v3/classes.rb, line 490 def update!(**args) @screen_density = args[:screen_density] if args.key?(:screen_density) @supported_abis = args[:supported_abis] if args.key?(:supported_abis) @supported_locales = args[:supported_locales] if args.key?(:supported_locales) end