class Google::Apis::TestingV1::ApkManifest

An Android app manifest. See developer.android.com/guide/topics/ manifest/manifest-intro.html

Attributes

application_label[RW]

User-readable name for the application. Corresponds to the JSON property `applicationLabel` @return [String]

intent_filters[RW]

Corresponds to the JSON property `intentFilters` @return [Array<Google::Apis::TestingV1::IntentFilter>]

max_sdk_version[RW]

Maximum API level on which the application is designed to run. Corresponds to the JSON property `maxSdkVersion` @return [Fixnum]

min_sdk_version[RW]

Minimum API level required for the application to run. Corresponds to the JSON property `minSdkVersion` @return [Fixnum]

package_name[RW]

Full Java-style package name for this application, e.g. “com.example.foo”. Corresponds to the JSON property `packageName` @return [String]

target_sdk_version[RW]

Specifies the API Level on which the application is designed to run. Corresponds to the JSON property `targetSdkVersion` @return [Fixnum]

uses_permission[RW]

Permissions declared to be used by the application Corresponds to the JSON property `usesPermission` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 697
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 702
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)
  @target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
  @uses_permission = args[:uses_permission] if args.key?(:uses_permission)
end