Im doing bluetooth based application, I want to connect other devices like nokia devices, and printer.
I refer the android bluetooth documentation http://developer.android.com/guide/topics/connectivity/bluetooth.html. It demonstrates all the fundamental Bluetooth API capabilites, And I did these all the things
Scanning for other Bluetooth devices
Querying the local Bluetooth adapter for paired Bluetooth devices
Establishing RFCOMM channels/sockets
Connecting to a remote device
Transfering data over Bluetooth
i get reference from BluetoothChat, samples of android.
BluetoothChat This application send data to another android device but for that this application must be installed in both the devices.
Like this How to send file from Android device to other device through Bluetooth by code
What i want is
- I want to send file from one device to another device from my application and that also works even another device not running our application. i.e. Receiver device also able to receive file using default Bluetooth.
Is this possible in android?