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 c54c68a

Browse files
committedMay 24, 2023
feat(testing): update the api
#### testing:v1 The following keys were added: - schemas.ApkManifest.properties.services (Total Keys: 2) - schemas.Service (Total Keys: 5) - schemas.Shard.properties.estimatedShardDuration (Total Keys: 3) - schemas.Shard.properties.numShards.readOnly (Total Keys: 1) - schemas.Shard.properties.shardIndex.readOnly (Total Keys: 1) - schemas.Shard.properties.testTargetsForShard.readOnly (Total Keys: 1) - schemas.ShardingOption.properties.smartSharding.$ref (Total Keys: 1) - schemas.SmartSharding (Total Keys: 4)
1 parent a7ecc3b commit c54c68a

File tree

3 files changed

+89
-2
lines changed

3 files changed

+89
-2
lines changed
 

‎docs/dyn/testing_v1.applicationDetailService.html

+16
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,22 @@ <h3>Method Details</h3>
130130
],
131131
&quot;minSdkVersion&quot;: 42, # Minimum API level required for the application to run.
132132
&quot;packageName&quot;: &quot;A String&quot;, # Full Java-style package name for this application, e.g. &quot;com.example.foo&quot;.
133+
&quot;services&quot;: [ # Services contained in the tag.
134+
{ # The section of an tag. https://developer.android.com/guide/topics/manifest/service-element
135+
&quot;intentFilter&quot;: [ # Intent filters in the service
136+
{ # The section of an tag. https://developer.android.com/guide/topics/manifest/intent-filter-element.html
137+
&quot;actionNames&quot;: [ # The android:name value of the tag.
138+
&quot;A String&quot;,
139+
],
140+
&quot;categoryNames&quot;: [ # The android:name value of the tag.
141+
&quot;A String&quot;,
142+
],
143+
&quot;mimeType&quot;: &quot;A String&quot;, # The android:mimeType value of the tag.
144+
},
145+
],
146+
&quot;name&quot;: &quot;A String&quot;, # The android:name value
147+
},
148+
],
133149
&quot;targetSdkVersion&quot;: 42, # Specifies the API Level on which the application is designed to run.
134150
&quot;usesFeature&quot;: [ # Feature usage tags defined in the manifest.
135151
{ # A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html

‎docs/dyn/testing_v1.projects.testMatrices.html

+21
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ <h3>Method Details</h3>
208208
&quot;matrixId&quot;: &quot;A String&quot;, # Output only. Id of the containing TestMatrix.
209209
&quot;projectId&quot;: &quot;A String&quot;, # Output only. The cloud project that owns the test execution.
210210
&quot;shard&quot;: { # Output only. Details about the shard. # Output only. Details about the shard.
211+
&quot;estimatedShardDuration&quot;: &quot;A String&quot;, # Output only. The estimated shard duration based on previous test case timing records, if available.
211212
&quot;numShards&quot;: 42, # Output only. The total number of shards.
212213
&quot;shardIndex&quot;: 42, # Output only. The index of the shard among all the shards.
213214
&quot;testTargetsForShard&quot;: { # Test targets for a shard. # Output only. Test targets for each shard. Only set for manual sharding.
@@ -245,6 +246,9 @@ <h3>Method Details</h3>
245246
},
246247
],
247248
},
249+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
250+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
251+
},
248252
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
249253
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
250254
},
@@ -440,6 +444,9 @@ <h3>Method Details</h3>
440444
},
441445
],
442446
},
447+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
448+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
449+
},
443450
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
444451
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
445452
},
@@ -702,6 +709,7 @@ <h3>Method Details</h3>
702709
&quot;matrixId&quot;: &quot;A String&quot;, # Output only. Id of the containing TestMatrix.
703710
&quot;projectId&quot;: &quot;A String&quot;, # Output only. The cloud project that owns the test execution.
704711
&quot;shard&quot;: { # Output only. Details about the shard. # Output only. Details about the shard.
712+
&quot;estimatedShardDuration&quot;: &quot;A String&quot;, # Output only. The estimated shard duration based on previous test case timing records, if available.
705713
&quot;numShards&quot;: 42, # Output only. The total number of shards.
706714
&quot;shardIndex&quot;: 42, # Output only. The index of the shard among all the shards.
707715
&quot;testTargetsForShard&quot;: { # Test targets for a shard. # Output only. Test targets for each shard. Only set for manual sharding.
@@ -739,6 +747,9 @@ <h3>Method Details</h3>
739747
},
740748
],
741749
},
750+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
751+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
752+
},
742753
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
743754
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
744755
},
@@ -934,6 +945,9 @@ <h3>Method Details</h3>
934945
},
935946
],
936947
},
948+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
949+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
950+
},
937951
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
938952
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
939953
},
@@ -1203,6 +1217,7 @@ <h3>Method Details</h3>
12031217
&quot;matrixId&quot;: &quot;A String&quot;, # Output only. Id of the containing TestMatrix.
12041218
&quot;projectId&quot;: &quot;A String&quot;, # Output only. The cloud project that owns the test execution.
12051219
&quot;shard&quot;: { # Output only. Details about the shard. # Output only. Details about the shard.
1220+
&quot;estimatedShardDuration&quot;: &quot;A String&quot;, # Output only. The estimated shard duration based on previous test case timing records, if available.
12061221
&quot;numShards&quot;: 42, # Output only. The total number of shards.
12071222
&quot;shardIndex&quot;: 42, # Output only. The index of the shard among all the shards.
12081223
&quot;testTargetsForShard&quot;: { # Test targets for a shard. # Output only. Test targets for each shard. Only set for manual sharding.
@@ -1240,6 +1255,9 @@ <h3>Method Details</h3>
12401255
},
12411256
],
12421257
},
1258+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
1259+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
1260+
},
12431261
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
12441262
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
12451263
},
@@ -1435,6 +1453,9 @@ <h3>Method Details</h3>
14351453
},
14361454
],
14371455
},
1456+
&quot;smartSharding&quot;: { # Shards test based on previous test case timing records. # Shards test based on previous test case timing records.
1457+
&quot;targetedShardDuration&quot;: &quot;A String&quot;, # The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.
1458+
},
14381459
&quot;uniformSharding&quot;: { # Uniformly shards test cases given a total number of shards. For instrumentation tests, it will be translated to &quot;-e numShard&quot; and &quot;-e shardIndex&quot; AndroidJUnitRunner arguments. With uniform sharding enabled, specifying either of these sharding arguments via `environment_variables` is invalid. Based on the sharding mechanism AndroidJUnitRunner uses, there is no guarantee that test cases will be distributed uniformly across all shards. # Uniformly shards test cases given a total number of shards.
14391460
&quot;numShards&quot;: 42, # Required. The total number of shards to create. This must always be a positive number that is no greater than the total number of test cases. When you select one or more physical devices, the number of shards must be &lt;= 50. When you select one or more ARM virtual devices, it must be &lt;= 100. When you select only x86 virtual devices, it must be &lt;= 500.
14401461
},

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

+52-2
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
}
283283
}
284284
},
285-
"revision": "20230411",
285+
"revision": "20230519",
286286
"rootUrl": "https://testing.googleapis.com/",
287287
"schemas": {
288288
"Account": {
@@ -778,6 +778,13 @@
778778
"description": "Full Java-style package name for this application, e.g. \"com.example.foo\".",
779779
"type": "string"
780780
},
781+
"services": {
782+
"description": "Services contained in the tag.",
783+
"items": {
784+
"$ref": "Service"
785+
},
786+
"type": "array"
787+
},
781788
"targetSdkVersion": {
782789
"description": "Specifies the API Level on which the application is designed to run.",
783790
"format": "int32",
@@ -1692,23 +1699,50 @@
16921699
},
16931700
"type": "object"
16941701
},
1702+
"Service": {
1703+
"description": "The section of an tag. https://developer.android.com/guide/topics/manifest/service-element",
1704+
"id": "Service",
1705+
"properties": {
1706+
"intentFilter": {
1707+
"description": "Intent filters in the service",
1708+
"items": {
1709+
"$ref": "IntentFilter"
1710+
},
1711+
"type": "array"
1712+
},
1713+
"name": {
1714+
"description": "The android:name value",
1715+
"type": "string"
1716+
}
1717+
},
1718+
"type": "object"
1719+
},
16951720
"Shard": {
16961721
"description": "Output only. Details about the shard.",
16971722
"id": "Shard",
16981723
"properties": {
1724+
"estimatedShardDuration": {
1725+
"description": "Output only. The estimated shard duration based on previous test case timing records, if available.",
1726+
"format": "google-duration",
1727+
"readOnly": true,
1728+
"type": "string"
1729+
},
16991730
"numShards": {
17001731
"description": "Output only. The total number of shards.",
17011732
"format": "int32",
1733+
"readOnly": true,
17021734
"type": "integer"
17031735
},
17041736
"shardIndex": {
17051737
"description": "Output only. The index of the shard among all the shards.",
17061738
"format": "int32",
1739+
"readOnly": true,
17071740
"type": "integer"
17081741
},
17091742
"testTargetsForShard": {
17101743
"$ref": "TestTargetsForShard",
1711-
"description": "Output only. Test targets for each shard. Only set for manual sharding."
1744+
"description": "Output only. Test targets for each shard. Only set for manual sharding.",
1745+
"readOnly": true
17121746
}
17131747
},
17141748
"type": "object"
@@ -1721,13 +1755,29 @@
17211755
"$ref": "ManualSharding",
17221756
"description": "Shards test cases into the specified groups of packages, classes, and/or methods."
17231757
},
1758+
"smartSharding": {
1759+
"$ref": "SmartSharding",
1760+
"description": "Shards test based on previous test case timing records."
1761+
},
17241762
"uniformSharding": {
17251763
"$ref": "UniformSharding",
17261764
"description": "Uniformly shards test cases given a total number of shards."
17271765
}
17281766
},
17291767
"type": "object"
17301768
},
1769+
"SmartSharding": {
1770+
"description": "Shards test based on previous test case timing records.",
1771+
"id": "SmartSharding",
1772+
"properties": {
1773+
"targetedShardDuration": {
1774+
"description": "The amount of time tests within a shard should take. Default: 300 seconds (5 minutes). The minimum allowed: 120 seconds (2 minutes). The shard count is dynamically set based on time, up to the maximum shard limit (described below). To guarantee at least one test case for each shard, the number of shards will not exceed the number of test cases. Shard duration will be exceeded if: - The maximum shard limit is reached and there is more calculated test time remaining to allocate into shards. - Any individual test is estimated to be longer than the targeted shard duration. Shard duration is not guaranteed because smart sharding uses test case history and default durations which may not be accurate. The rules for finding the test case timing records are: - If the service has seen a test case in the last 30 days, the record of the latest successful one will be used. - For new test cases, the average duration of other known test cases will be used. - If there are no previous test case timing records available, the test case is considered to be 15 seconds long by default. Because the actual shard duration can exceed the targeted shard duration, we recommend setting the targeted value at least 5 minutes less than the maximum allowed test timeout (45 minutes for physical devices and 60 minutes for virtual), or using the custom test timeout value you set. This approach avoids cancelling the shard before all tests can finish. Note that there is a limit for maximum number of shards. When you select one or more physical devices, the number of shards must be <= 50. When you select one or more ARM virtual devices, it must be <= 100. When you select only x86 virtual devices, it must be <= 500. To guarantee at least one test case for per shard, the number of shards will not exceed the number of test cases. Each shard created will count toward daily test quota.",
1775+
"format": "google-duration",
1776+
"type": "string"
1777+
}
1778+
},
1779+
"type": "object"
1780+
},
17311781
"StartActivityIntent": {
17321782
"description": "A starting intent specified by an action, uri, and categories.",
17331783
"id": "StartActivityIntent",

0 commit comments

Comments
 (0)
Please sign in to comment.