I am trying to connect my Android device to a PC using bluecove. It worked fine on Windows, but gives me the following problem on MAC (OS 10.9, Mavericks):
dyld: lazy symbol binding failed: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures
Referenced from: /private/var/folders/cq/f5chm1950m5_n2s5bk1bjfyh0000gn/T/bluecove_0/libbluecove.jnilib
Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
dyld: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures
Referenced from: /private/var/folders/cq/f5chm1950m5_n2s5bk1bjfyh0000gn/T/bluecove_0/libbluecove.jnilib
Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
After a little research, I found out that it breaks into 10.8, and the hacks break into running Java in 32-bit mode, but 10.9 does not even allow me to run a java instance in 32-bit mode.
How can I get rid of the above error? Any help appreciated :)
source
share