File tree 2 files changed +57
-1
lines changed
googleapiclient/discovery_cache/documents
2 files changed +57
-1
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,21 @@ <h3>Method Details</h3>
122
122
},
123
123
],
124
124
"maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
125
+ "metadata": [ # 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
+ "name": "A String", # The android:name value
128
+ "value": "A String", # The android:value value
129
+ },
130
+ ],
125
131
"minSdkVersion": 42, # Minimum API level required for the application to run.
126
132
"packageName": "A String", # Full Java-style package name for this application, e.g. "com.example.foo".
127
133
"targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run.
134
+ "usesFeature": [ # 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
+ "isRequired": True or False, # The android:required value
137
+ "name": "A String", # The android:name value
138
+ },
139
+ ],
128
140
"usesPermission": [ # Permissions declared to be used by the application
129
141
"A String",
130
142
],
Original file line number Diff line number Diff line change 282
282
}
283
283
}
284
284
},
285
- "revision" : " 20221101 " ,
285
+ "revision" : " 20221108 " ,
286
286
"rootUrl" : " https://testing.googleapis.com/" ,
287
287
"schemas" : {
288
288
"Account" : {
755
755
"format" : " int32" ,
756
756
"type" : " integer"
757
757
},
758
+ "metadata" : {
759
+ "description" : " Meta-data tags defined in the manifest." ,
760
+ "items" : {
761
+ "$ref" : " Metadata"
762
+ },
763
+ "type" : " array"
764
+ },
758
765
"minSdkVersion" : {
759
766
"description" : " Minimum API level required for the application to run." ,
760
767
"format" : " int32" ,
769
776
"format" : " int32" ,
770
777
"type" : " integer"
771
778
},
779
+ "usesFeature" : {
780
+ "description" : " Feature usage tags defined in the manifest." ,
781
+ "items" : {
782
+ "$ref" : " UsesFeature"
783
+ },
784
+ "type" : " array"
785
+ },
772
786
"usesPermission" : {
773
787
"description" : " Permissions declared to be used by the application" ,
774
788
"items" : {
1420
1434
},
1421
1435
"type" : " object"
1422
1436
},
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
+ },
1423
1452
"NetworkConfiguration" : {
1424
1453
"id" : " NetworkConfiguration" ,
1425
1454
"properties" : {
2173
2202
},
2174
2203
"type" : " object"
2175
2204
},
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
+ },
2176
2220
"XcodeVersion" : {
2177
2221
"description" : " An Xcode version that an iOS version is compatible with." ,
2178
2222
"id" : " XcodeVersion" ,
You can’t perform that action at this time.
0 commit comments