I have an Android device (HTC Incredible) and I would like to setup bluetooth communication between the android phone and a MacBook Pro. I have got bluecove to start on the Mac and I have done coding using Sockets in Android, but I can not get a connection working. Here is my andriod code

BluetoothDevice device = reciever.getDevice("00:25:00:XX:XX:XX"); //my bluetooth address
UUID generalUuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
socket = device.createRfcommSocketToServiceRecord(generalUuid);
socket.connect();
writer = new OutputStreamWriter(socket.getOutputStream());
reader = new InputStreamReader(socket.getInputStream());

on the Mac

String serverUUID = "btspp://localhost:0000110100001000800000805F9B34FB;name=matt";
StreamConnectionNotifier notifier = (StreamConnectionNotifier) Connector.open(serverUUID);
StreamConnection connection = notifier.acceptAndOpen();
// prepare to send/receive data
byte buffer[] = new byte[100];
String msg = "hello there, client";
InputStream is = connection.openInputStream();
OutputStream os = connection.openOutputStream();

Any help or examples would be helpful.

link|improve this question

67% accept rate
Did you ever find a solution to this? I am having a similar issue except that I'm trying to connect to either BlueCove/Windows or PyBlueZ/Linux...neither connection is working with Android (but they work with each other fine). – Matt Mar 28 at 3:29
@Matt No I never did succeed. – Milhous Apr 6 at 18:02
feedback

2 Answers

You change the line of code

socket = device.createRfcommSocketToServiceRecord (generalUuid);

by

Method m; m = device.getClass (). getMethod ("createRfcommSocket", new Class [] {int.class});

tmp = (BluetoothSocket) m.invoke (device, 1);

mmSocket = tmp;

mmSocket.connect ();

in Android

link|improve this answer
I believe that code is the hack version of connecting, when android did not offically support bluetooth. – Milhous Jul 19 '11 at 1:08
feedback

you can use bluecove for android. add the bluecove library and the bluecove-android to your build path and the work should be easier.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.