class Google::Apis::TestingV1::ApkManifest
An Android app manifest. See developer.android.com/guide/topics/ manifest/manifest-intro.html
Attributes
User-readable name for the application. Corresponds to the JSON property `applicationLabel` @return [String]
Corresponds to the JSON property `intentFilters` @return [Array<Google::Apis::TestingV1::IntentFilter>]
Maximum API level on which the application is designed to run. Corresponds to the JSON property `maxSdkVersion` @return [Fixnum]
Minimum API level required for the application to run. Corresponds to the JSON property `minSdkVersion` @return [Fixnum]
Full Java-style package name for this application, e.g. “com.example.foo”. Corresponds to the JSON property `packageName` @return [String]
Specifies the API Level on which the application is designed to run. Corresponds to the JSON property `targetSdkVersion` @return [Fixnum]
Permissions declared to be used by the application Corresponds to the JSON property `usesPermission` @return [Array<String>]
Public Class Methods
# File lib/google/apis/testing_v1/classes.rb, line 697 def initialize(**args) update!(**args) end
Public Instance Methods
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