Class: Google::Apis::AndroidpublisherV3::SystemApkOptions
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::SystemApkOptions
- 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
-
#rotated ⇒ Boolean
(also: #rotated?)
Whether to use the rotated key for signing the system APK.
-
#uncompressed_dex_files ⇒ Boolean
(also: #uncompressed_dex_files?)
Whether system APK was generated with uncompressed dex files.
-
#uncompressed_native_libraries ⇒ Boolean
(also: #uncompressed_native_libraries?)
Whether system APK was generated with uncompressed native libraries.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SystemApkOptions
constructor
A new instance of SystemApkOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SystemApkOptions
Returns a new instance of SystemApkOptions.
6289 6290 6291 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rotated ⇒ Boolean Also known as: rotated?
Whether to use the rotated key for signing the system APK.
Corresponds to the JSON property rotated
6274 6275 6276 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6274 def rotated @rotated end |
#uncompressed_dex_files ⇒ Boolean Also known as: uncompressed_dex_files?
Whether system APK was generated with uncompressed dex files.
Corresponds to the JSON property uncompressedDexFiles
6280 6281 6282 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6280 def uncompressed_dex_files @uncompressed_dex_files end |
#uncompressed_native_libraries ⇒ Boolean Also known as: uncompressed_native_libraries?
Whether system APK was generated with uncompressed native libraries.
Corresponds to the JSON property uncompressedNativeLibraries
6286 6287 6288 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6286 def uncompressed_native_libraries @uncompressed_native_libraries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6294 6295 6296 6297 6298 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6294 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 |