Skip to content

Commit

Permalink
feat(testing): update the api
Browse files Browse the repository at this point in the history
#### testing:v1

The following keys were added:
- schemas.ApkManifest.properties.metadata (Total Keys: 2)
- schemas.ApkManifest.properties.usesFeature (Total Keys: 2)
- schemas.Metadata (Total Keys: 4)
- schemas.UsesFeature (Total Keys: 4)
  • Loading branch information
yoshi-automation committed Nov 22, 2022
1 parent 7475ad6 commit a456ae8
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/dyn/testing_v1.applicationDetailService.html
Expand Up @@ -122,9 +122,21 @@ <h3>Method Details</h3>
},
],
&quot;maxSdkVersion&quot;: 42, # Maximum API level on which the application is designed to run.
&quot;metadata&quot;: [ # Meta-data tags defined in the manifest.
{ # A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html
&quot;name&quot;: &quot;A String&quot;, # The android:name value
&quot;value&quot;: &quot;A String&quot;, # The android:value value
},
],
&quot;minSdkVersion&quot;: 42, # Minimum API level required for the application to run.
&quot;packageName&quot;: &quot;A String&quot;, # Full Java-style package name for this application, e.g. &quot;com.example.foo&quot;.
&quot;targetSdkVersion&quot;: 42, # Specifies the API Level on which the application is designed to run.
&quot;usesFeature&quot;: [ # Feature usage tags defined in the manifest.
{ # A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html
&quot;isRequired&quot;: True or False, # The android:required value
&quot;name&quot;: &quot;A String&quot;, # The android:name value
},
],
&quot;usesPermission&quot;: [ # Permissions declared to be used by the application
&quot;A String&quot;,
],
Expand Down
46 changes: 45 additions & 1 deletion googleapiclient/discovery_cache/documents/testing.v1.json
Expand Up @@ -282,7 +282,7 @@
}
}
},
"revision": "20221101",
"revision": "20221108",
"rootUrl": "https://testing.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -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",
Expand All @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit a456ae8

Please sign in to comment.