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.
6268 6269 6270 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6268 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
6253 6254 6255 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6253 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
6259 6260 6261 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6259 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
6265 6266 6267 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6265 def uncompressed_native_libraries @uncompressed_native_libraries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6273 6274 6275 6276 6277 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6273 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 |