Class: Google::Apis::AndroidpublisherV3::SystemApkOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/androidpublisher_v3/classes.rb,
lib/google/apis/androidpublisher_v3/representations.rb,
lib/google/apis/androidpublisher_v3/representations.rb

Overview

Options for system APKs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SystemApkOptions

Returns a new instance of SystemApkOptions.



6242
6243
6244
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6242

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#rotatedBoolean Also known as: rotated?

Whether to use the rotated key for signing the system APK. Corresponds to the JSON property rotated

Returns:

  • (Boolean)


6227
6228
6229
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6227

def rotated
  @rotated
end

#uncompressed_dex_filesBoolean Also known as: uncompressed_dex_files?

Whether system APK was generated with uncompressed dex files. Corresponds to the JSON property uncompressedDexFiles

Returns:

  • (Boolean)


6233
6234
6235
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6233

def uncompressed_dex_files
  @uncompressed_dex_files
end

#uncompressed_native_librariesBoolean Also known as: uncompressed_native_libraries?

Whether system APK was generated with uncompressed native libraries. Corresponds to the JSON property uncompressedNativeLibraries

Returns:

  • (Boolean)


6239
6240
6241
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6239

def uncompressed_native_libraries
  @uncompressed_native_libraries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6247
6248
6249
6250
6251
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6247

def update!(**args)
  @rotated = args[:rotated] if args.key?(:rotated)
  @uncompressed_dex_files = args[:uncompressed_dex_files] if args.key?(:uncompressed_dex_files)
  @uncompressed_native_libraries = args[:uncompressed_native_libraries] if args.key?(:uncompressed_native_libraries)
end