蓝牙连接无需配对

蓝牙连接无需配对

问题描述:

我一直在寻找一种无需先配对即可使用蓝牙连接两部手机的方法.我正在尝试忽略恼人的蓝牙弹出请求. Google商店中有一个名为Bluehood的应用程序.我想在完全不同的细分市场中构建的应用程序使用这种连接方式.您可以在名为"Bluehood Social Bluetooth"的Google商店中搜索该应用. https://play.google.com/store/apps/details ?id = com.mobile.bluehood

I was looking to find a method to connect two phones using bluetooth without having to first pair them. I am trying to omit the annoying bluetooth pop up request. There is an app on the google store that does this called Bluehood. I wanted to use that style of connection for an app I am building in a totally different niche. You can search for the app on the google store called "Bluehood Social Bluetooth". https://play.google.com/store/apps/details?id=com.mobile.bluehood

您可能会在两个设备之间创建不安全的蓝牙串行连接.

You may create an insecure bluetooth serial connection between two devices.

创建连接:

标识BluetoothDevice并调用其方法createInsecureRfcommSocketToServiceRecord

接收连接:

掌握BluetoothAdapter并调用方法listenUsingInsecureRfcommWithServiceRecord

此技术不需要设备使用配对代码建立连接.它在API级别10及更高版本中可用.

This technique won't require the devices to establish a connection using pairing code. Its available in API level 10 and above.