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.



10705
10706
10707
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10705

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)


10690
10691
10692
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10690

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)


10696
10697
10698
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10696

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)


10702
10703
10704
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10702

def uncompressed_native_libraries
  @uncompressed_native_libraries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10710
10711
10712
10713
10714
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 10710

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