Class: Google::Apis::TestingV1::ApkManifest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::TestingV1::ApkManifest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb 
Overview
An Android app manifest. See http://developer.android.com/guide/topics/manifest/manifest-intro.html
Instance Attribute Summary collapse
- 
  
    
      #application_label  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
User-readable name for the application.
 - 
  
    
      #intent_filters  ⇒ Array<Google::Apis::TestingV1::IntentFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Corresponds to the JSON property
intentFilters. - 
  
    
      #max_sdk_version  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Maximum API level on which the application is designed to run.
 - 
  
    
      #min_sdk_version  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Minimum API level required for the application to run.
 - 
  
    
      #package_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Full Java-style package name for this application, e.g.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ApkManifest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ApkManifest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ApkManifest
Returns a new instance of ApkManifest
      703 704 705  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 703 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#application_label ⇒ String
User-readable name for the application.
Corresponds to the JSON property applicationLabel
      680 681 682  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 680 def application_label @application_label end  | 
  
#intent_filters ⇒ Array<Google::Apis::TestingV1::IntentFilter>
Corresponds to the JSON property intentFilters
      685 686 687  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 685 def intent_filters @intent_filters end  | 
  
#max_sdk_version ⇒ Fixnum
Maximum API level on which the application is designed to run.
Corresponds to the JSON property maxSdkVersion
      690 691 692  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 690 def max_sdk_version @max_sdk_version end  | 
  
#min_sdk_version ⇒ Fixnum
Minimum API level required for the application to run.
Corresponds to the JSON property minSdkVersion
      695 696 697  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 695 def min_sdk_version @min_sdk_version end  | 
  
#package_name ⇒ String
Full Java-style package name for this application, e.g.
"com.example.foo".
Corresponds to the JSON property packageName
      701 702 703  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 701 def package_name @package_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      708 709 710 711 712 713 714  | 
    
      # File 'generated/google/apis/testing_v1/classes.rb', line 708 def update!(**args) @application_label = args[:application_label] if args.key?(:application_label) @intent_filters = args[:intent_filters] if args.key?(:intent_filters) @max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version) @min_sdk_version = args[:min_sdk_version] if args.key?(:min_sdk_version) @package_name = args[:package_name] if args.key?(:package_name) end  |