[Work in progress] Bluetooth administration plugin for Unity Android
Currently, this plugin can just paring with Bluetooth devices.
.unitypackage
file placed on Releases.
Import the package to your Unity project.
Starts to scan devices:
BluetoothManager.StartScanBluetooth();
Obtains found devices' addresses
List<string> addresses = BluetoothManager.GetDeviceAddresses();
Pair with a device (Android native UI may be appeared)
// Use bluetooth address obtained by GetDeviceAddresses()
BluetoothManager.BondWithDeviceAddress(addresses[0]);