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.
      6290 6291 6292  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6290 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
      6275 6276 6277  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6275 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
      6281 6282 6283  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6281 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
      6287 6288 6289  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6287 def uncompressed_native_libraries @uncompressed_native_libraries end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6295 6296 6297 6298 6299  | 
    
      # File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6295 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  |