Skip to content

Commit 6158b31

Browse files
feat(testing): update the api
#### testing:v1 The following keys were added: - schemas.ApkManifest.properties.usesPermissionTags (Total Keys: 2) - schemas.UsesPermissionTag (Total Keys: 5)
1 parent 7cc693d commit 6158b31

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

docs/dyn/testing_v1.applicationDetailService.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,15 @@ <h3>Method Details</h3>
154154
&quot;name&quot;: &quot;A String&quot;, # The android:name value
155155
},
156156
],
157-
&quot;usesPermission&quot;: [ # Permissions declared to be used by the application
157+
&quot;usesPermission&quot;: [
158158
&quot;A String&quot;,
159159
],
160+
&quot;usesPermissionTags&quot;: [ # Permissions declared to be used by the application
161+
{ # The tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-permission-element.html
162+
&quot;maxSdkVersion&quot;: 42, # The android:name value
163+
&quot;name&quot;: &quot;A String&quot;, # The android:name value
164+
},
165+
],
160166
&quot;versionCode&quot;: &quot;A String&quot;, # Version number used internally by the app.
161167
&quot;versionName&quot;: &quot;A String&quot;, # Version number shown to users.
162168
},

googleapiclient/discovery_cache/documents/testing.v1.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@
449449
}
450450
}
451451
},
452-
"revision": "20240917",
452+
"revision": "20241105",
453453
"rootUrl": "https://testing.googleapis.com/",
454454
"schemas": {
455455
"Account": {
@@ -972,12 +972,18 @@
972972
"type": "array"
973973
},
974974
"usesPermission": {
975-
"description": "Permissions declared to be used by the application",
976975
"items": {
977976
"type": "string"
978977
},
979978
"type": "array"
980979
},
980+
"usesPermissionTags": {
981+
"description": "Permissions declared to be used by the application",
982+
"items": {
983+
"$ref": "UsesPermissionTag"
984+
},
985+
"type": "array"
986+
},
981987
"versionCode": {
982988
"description": "Version number used internally by the app.",
983989
"format": "int64",
@@ -2819,6 +2825,22 @@ false
28192825
},
28202826
"type": "object"
28212827
},
2828+
"UsesPermissionTag": {
2829+
"description": "The tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-permission-element.html",
2830+
"id": "UsesPermissionTag",
2831+
"properties": {
2832+
"maxSdkVersion": {
2833+
"description": "The android:name value",
2834+
"format": "int32",
2835+
"type": "integer"
2836+
},
2837+
"name": {
2838+
"description": "The android:name value",
2839+
"type": "string"
2840+
}
2841+
},
2842+
"type": "object"
2843+
},
28222844
"XcodeVersion": {
28232845
"description": "An Xcode version that an iOS version is compatible with.",
28242846
"id": "XcodeVersion",

0 commit comments

Comments
 (0)