我正在尝试将蓝牙网络应用程序用于齿轮设备上。
当我尝试检查代码时 的 tizen.systeminfo.getCapability(BLUETOOTH_FEATURE_KEY); 它返回false。但是,该设备具有蓝牙功能。 它也可以连接到其他设备。
答案 0 :(得分:0)
使用适当的功能键并添加所需的权限。
try
{
/* Checks if a device supports bluetooth API */
var bluetooth = tizen.systeminfo.getCapability("http://tizen.org/feature/network.bluetooth");
console.log(" Bluetooth = " + bluetooth);
document.getElementById("isOnBL").innerHTML = "Bluetooth : "+bluetooth;
}
catch (error)
{
console.log("Error name: " + error.name + ", message: " + error.message);
}
添加权限
<tizen:privilege name="http://tizen.org/privilege/system"/>