[android-developers] Re: Plse give code to send an object through bluetooth to another device

2012-10-17 Thread Chris Sarbora
http://www.catb.org/esr/faqs/smart-questions.html On Wednesday, October 17, 2012 12:40:01 AM UTC-7, vishnu c wrote: label:Android -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Plse give code to send an object through bluetooth to another device

2012-10-17 Thread bob
private void connectToServerSocket( BluetoothDevice device, UUID uuid) { try{ BluetoothSocket clientSocket = device.createRfcommSocketToServiceRecord( uuid); // Block until server connection accepted. clientSocket.connect(); // Start listening for messages. listenForMessages(