usbPrinters
清单属性用于声明应用使用 printerProvider API 支持哪些 USB 打印机。
manifest.json 示例
{
"name": "My printer app",
"usb_printers": {
"filters": [
// This app can print to the Nexus One and any printer made by Google.
{ "vendorId": 6353, "productId": 19985 },
{ "vendorId": 6353, "interfaceClass": 7 }
]
},
...
}
参考
filters
(对象数组)- 必需与支持的设备匹配的 USB 设备过滤器列表。设备只需与所提供的过滤条件之一匹配即可。必须提供
vendorId
,并且只能提供productId
或interfaceClass
之一。