docs: update generated docs (#981)
diff --git a/docs/dyn/testing_v1.applicationDetailService.html b/docs/dyn/testing_v1.applicationDetailService.html
index 1cb91d2..0249798 100644
--- a/docs/dyn/testing_v1.applicationDetailService.html
+++ b/docs/dyn/testing_v1.applicationDetailService.html
@@ -88,7 +88,8 @@
{ # A reference to a file, used for user inputs.
"gcsPath": "A String", # A path to a file in Google Cloud Storage.
- # Example: gs://build-app-1414623860166/app-debug-unaligned.apk
+ # Example: gs://build-app-1414623860166/app%40debug-unaligned.apk
+ # These paths are expected to be url encoded (percent encoding)
}
x__xgafv: string, V1 error format.
@@ -104,24 +105,24 @@
# contents.
"apkManifest": { # An Android app manifest. See
# http://developer.android.com/guide/topics/manifest/manifest-intro.html
- "maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
+ "packageName": "A String", # Full Java-style package name for this application, e.g.
+ # "com.example.foo".
"minSdkVersion": 42, # Minimum API level required for the application to run.
+ "maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
+ "applicationLabel": "A String", # User-readable name for the application.
"intentFilters": [
{ # The <intent-filter> section of an <activity> tag.
# https://developer.android.com/guide/topics/manifest/intent-filter-element.html
"actionNames": [ # The android:name value of the <action> tag.
"A String",
],
+ "mimeType": "A String", # The android:mimeType value of the <data> tag.
"categoryNames": [ # The android:name value of the <category> tag.
"A String",
],
- "mimeType": "A String", # The android:mimeType value of the <data> tag.
},
],
- "packageName": "A String", # Full Java-style package name for this application, e.g.
- # "com.example.foo".
"targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run.
- "applicationLabel": "A String", # User-readable name for the application.
},
},
}</pre>