Search code examples
androidandroid-bluetoothfile-sharing

I want to send images and files using code for sending messages over my bluetooth app



I have been developing a bluetooth chat app while taking reference from developers code of bluetooth chat. My app is connecting to devices and sending and receiving messages but I am not able to understand how should I send Images over chat. I want to browse gallery and then send it through chat. I also want to send files using totally different activity.


Solution

  • You can encode and decode your bitmap with Base64 and send it as String via Socket. See this answer for more details.

    You can also split String to multiple messages and join them during receiving.