You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGE: This release has breaking changes.
#### testing:v1
The following keys were deleted:
- schemas.ApkManifest.properties.usesPermission.description
The following keys were added:
- schemas.ApkManifest.properties.usesPermissionTags.description
- schemas.ApkManifest.properties.usesPermissionTags.items.$ref
- schemas.ApkManifest.properties.usesPermissionTags.type
- schemas.UsesPermissionTag.description
- schemas.UsesPermissionTag.id
- schemas.UsesPermissionTag.properties.maxSdkVersion.description
- schemas.UsesPermissionTag.properties.maxSdkVersion.format
- schemas.UsesPermissionTag.properties.maxSdkVersion.type
- schemas.UsesPermissionTag.properties.name.description
- schemas.UsesPermissionTag.properties.name.type
- schemas.UsesPermissionTag.type
The following keys were changed:
- schemas.IosRoboTest.properties.roboScript.description
Copy file name to clipboardExpand all lines: discovery/testing-v1.json
+25-3Lines changed: 25 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -449,7 +449,7 @@
449
449
}
450
450
}
451
451
},
452
-
"revision": "20240917",
452
+
"revision": "20241231",
453
453
"rootUrl": "https://testing.googleapis.com/",
454
454
"schemas": {
455
455
"Account": {
@@ -972,12 +972,18 @@
972
972
"type": "array"
973
973
},
974
974
"usesPermission": {
975
-
"description": "Permissions declared to be used by the application",
976
975
"items": {
977
976
"type": "string"
978
977
},
979
978
"type": "array"
980
979
},
980
+
"usesPermissionTags": {
981
+
"description": "Permissions declared to be used by the application",
982
+
"items": {
983
+
"$ref": "UsesPermissionTag"
984
+
},
985
+
"type": "array"
986
+
},
981
987
"versionCode": {
982
988
"description": "Version number used internally by the app.",
983
989
"format": "int64",
@@ -1567,7 +1573,7 @@
1567
1573
},
1568
1574
"roboScript": {
1569
1575
"$ref": "FileReference",
1570
-
"description": "An optional Roboscript to customize the crawl. See https://firebase.google.com/docs/test-lab/android/robo-scripts-reference for more information about Roboscripts."
1576
+
"description": "An optional Roboscript to customize the crawl. See https://firebase.google.com/docs/test-lab/android/robo-scripts-reference for more information about Roboscripts. The maximum allowed file size of the roboscript is 10MiB."
1571
1577
}
1572
1578
},
1573
1579
"type": "object"
@@ -2819,6 +2825,22 @@
2819
2825
},
2820
2826
"type": "object"
2821
2827
},
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
+
},
2822
2844
"XcodeVersion": {
2823
2845
"description": "An Xcode version that an iOS version is compatible with.",
* Permissions declared to be used by the application
500
501
*/
501
-
usesPermission?: string[]|null;
502
+
usesPermissionTags?: Schema$UsesPermissionTag[];
502
503
/**
503
504
* Version number used internally by the app.
504
505
*/
@@ -904,7 +905,7 @@ export namespace testing_v1 {
904
905
*/
905
906
appIpa?: Schema$FileReference;
906
907
/**
907
-
* An optional Roboscript to customize the crawl. See https://firebase.google.com/docs/test-lab/android/robo-scripts-reference for more information about Roboscripts.
908
+
* An optional Roboscript to customize the crawl. See https://firebase.google.com/docs/test-lab/android/robo-scripts-reference for more information about Roboscripts. The maximum allowed file size of the roboscript is 10MiB.
0 commit comments