Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a456ae8

Browse files
committedNov 22, 2022
feat(testing): update the api
#### 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)
1 parent 7475ad6 commit a456ae8

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed
 

‎docs/dyn/testing_v1.applicationDetailService.html

+12
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,21 @@ <h3>Method Details</h3>
122122
},
123123
],
124124
&quot;maxSdkVersion&quot;: 42, # Maximum API level on which the application is designed to run.
125+
&quot;metadata&quot;: [ # Meta-data tags defined in the manifest.
126+
{ # A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html
127+
&quot;name&quot;: &quot;A String&quot;, # The android:name value
128+
&quot;value&quot;: &quot;A String&quot;, # The android:value value
129+
},
130+
],
125131
&quot;minSdkVersion&quot;: 42, # Minimum API level required for the application to run.
126132
&quot;packageName&quot;: &quot;A String&quot;, # Full Java-style package name for this application, e.g. &quot;com.example.foo&quot;.
127133
&quot;targetSdkVersion&quot;: 42, # Specifies the API Level on which the application is designed to run.
134+
&quot;usesFeature&quot;: [ # Feature usage tags defined in the manifest.
135+
{ # A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html
136+
&quot;isRequired&quot;: True or False, # The android:required value
137+
&quot;name&quot;: &quot;A String&quot;, # The android:name value
138+
},
139+
],
128140
&quot;usesPermission&quot;: [ # Permissions declared to be used by the application
129141
&quot;A String&quot;,
130142
],

‎googleapiclient/discovery_cache/documents/testing.v1.json

+45-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
}
283283
}
284284
},
285-
"revision": "20221101",
285+
"revision": "20221108",
286286
"rootUrl": "https://testing.googleapis.com/",
287287
"schemas": {
288288
"Account": {
@@ -755,6 +755,13 @@
755755
"format": "int32",
756756
"type": "integer"
757757
},
758+
"metadata": {
759+
"description": "Meta-data tags defined in the manifest.",
760+
"items": {
761+
"$ref": "Metadata"
762+
},
763+
"type": "array"
764+
},
758765
"minSdkVersion": {
759766
"description": "Minimum API level required for the application to run.",
760767
"format": "int32",
@@ -769,6 +776,13 @@
769776
"format": "int32",
770777
"type": "integer"
771778
},
779+
"usesFeature": {
780+
"description": "Feature usage tags defined in the manifest.",
781+
"items": {
782+
"$ref": "UsesFeature"
783+
},
784+
"type": "array"
785+
},
772786
"usesPermission": {
773787
"description": "Permissions declared to be used by the application",
774788
"items": {
@@ -1420,6 +1434,21 @@
14201434
},
14211435
"type": "object"
14221436
},
1437+
"Metadata": {
1438+
"description": "A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html",
1439+
"id": "Metadata",
1440+
"properties": {
1441+
"name": {
1442+
"description": "The android:name value",
1443+
"type": "string"
1444+
},
1445+
"value": {
1446+
"description": "The android:value value",
1447+
"type": "string"
1448+
}
1449+
},
1450+
"type": "object"
1451+
},
14231452
"NetworkConfiguration": {
14241453
"id": "NetworkConfiguration",
14251454
"properties": {
@@ -2173,6 +2202,21 @@
21732202
},
21742203
"type": "object"
21752204
},
2205+
"UsesFeature": {
2206+
"description": "A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html",
2207+
"id": "UsesFeature",
2208+
"properties": {
2209+
"isRequired": {
2210+
"description": "The android:required value",
2211+
"type": "boolean"
2212+
},
2213+
"name": {
2214+
"description": "The android:name value",
2215+
"type": "string"
2216+
}
2217+
},
2218+
"type": "object"
2219+
},
21762220
"XcodeVersion": {
21772221
"description": "An Xcode version that an iOS version is compatible with.",
21782222
"id": "XcodeVersion",

0 commit comments

Comments
 (0)
Please sign in to comment.