diff --git a/docs/dyn/testing_v1.applicationDetailService.html b/docs/dyn/testing_v1.applicationDetailService.html index 4166cebc9e3..99935a7cde3 100644 --- a/docs/dyn/testing_v1.applicationDetailService.html +++ b/docs/dyn/testing_v1.applicationDetailService.html @@ -122,9 +122,21 @@

Method Details

}, ], "maxSdkVersion": 42, # Maximum API level on which the application is designed to run. + "metadata": [ # Meta-data tags defined in the manifest. + { # A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html + "name": "A String", # The android:name value + "value": "A String", # The android:value value + }, + ], "minSdkVersion": 42, # Minimum API level required for the application to run. "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. + "usesFeature": [ # Feature usage tags defined in the manifest. + { # A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html + "isRequired": True or False, # The android:required value + "name": "A String", # The android:name value + }, + ], "usesPermission": [ # Permissions declared to be used by the application "A String", ], diff --git a/googleapiclient/discovery_cache/documents/testing.v1.json b/googleapiclient/discovery_cache/documents/testing.v1.json index d595443caf0..bb670863f55 100644 --- a/googleapiclient/discovery_cache/documents/testing.v1.json +++ b/googleapiclient/discovery_cache/documents/testing.v1.json @@ -282,7 +282,7 @@ } } }, - "revision": "20221101", + "revision": "20221108", "rootUrl": "https://testing.googleapis.com/", "schemas": { "Account": { @@ -755,6 +755,13 @@ "format": "int32", "type": "integer" }, + "metadata": { + "description": "Meta-data tags defined in the manifest.", + "items": { + "$ref": "Metadata" + }, + "type": "array" + }, "minSdkVersion": { "description": "Minimum API level required for the application to run.", "format": "int32", @@ -769,6 +776,13 @@ "format": "int32", "type": "integer" }, + "usesFeature": { + "description": "Feature usage tags defined in the manifest.", + "items": { + "$ref": "UsesFeature" + }, + "type": "array" + }, "usesPermission": { "description": "Permissions declared to be used by the application", "items": { @@ -1420,6 +1434,21 @@ }, "type": "object" }, + "Metadata": { + "description": "A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html", + "id": "Metadata", + "properties": { + "name": { + "description": "The android:name value", + "type": "string" + }, + "value": { + "description": "The android:value value", + "type": "string" + } + }, + "type": "object" + }, "NetworkConfiguration": { "id": "NetworkConfiguration", "properties": { @@ -2173,6 +2202,21 @@ }, "type": "object" }, + "UsesFeature": { + "description": "A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html", + "id": "UsesFeature", + "properties": { + "isRequired": { + "description": "The android:required value", + "type": "boolean" + }, + "name": { + "description": "The android:name value", + "type": "string" + } + }, + "type": "object" + }, "XcodeVersion": { "description": "An Xcode version that an iOS version is compatible with.", "id": "XcodeVersion",