Manifest - Bluetooth

La proprietà del file manifest bluetooth dichiara le autorizzazioni disponibili per il protocollo bluetooth tramite Google Cloud CLI o tramite l'API Compute Engine.

File manifest.json di esempio

{
  "name": "My Bluetooth app",
  "bluetooth": {
    // Permission for chrome.bluetoothSocket:
    // The application is allowed to communicate with devices
    // using the protocols, profiles, or services identified by
    // the UUIDs 0x1105 and 0x1106 using the BluetoothSocket API.
    "uuids": [ "1105", "1106" ],
    "socket": true
  },
  ...
}
{
  "name": "My Bluetooth app",
  "bluetooth": {
    // Permission for chrome.bluetoothLowEnergy:
    // The application is allowed to communicate with devices
    // using the profiles identified by the UUIDs 0x180D, 0x1809 and 0x180F
    // using the BluetoothLowEnergy API.
    "uuids": [ "180D", "1809", "180F" ],
    "low_energy": true
  },
  ...
}

Riferimento

  • uuids (array di stringa) - facoltativo

    La proprietà del file manifest uuids dichiara l'elenco di protocolli, profili e servizi utilizzati da un'app possono comunicare.

  • socket (booleano) - facoltativo

    Se true, autorizza un'app a usare l'API bluetoothSocket

  • low_energy (booleano) - facoltativo

    Se true, autorizza un'app a usare l'API bluetoothLowEnergy

  • peripheral (booleano) - facoltativo

    Se true, autorizza un'app a utilizzare le funzioni pubblicitarie in API bluetoothLowEnergy