class Google::Apis::TestingV1::Apk
An Android package file to install.
Attributes
location[RW]
A reference to a file, used for user inputs. Corresponds to the JSON property `location` @return [Google::Apis::TestingV1::FileReference]
package_name[RW]
The java package for the APK to be installed. Value is determined by examining the application's manifest. Corresponds to the JSON property `packageName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 625 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 630 def update!(**args) @location = args[:location] if args.key?(:location) @package_name = args[:package_name] if args.key?(:package_name) end