Reputation: 21
How can I send files from my mobile phone to raspberry pi using wifi or any other network?
Upvotes: 1
Views: 1970
Reputation: 14053
i used a server in between for communication (xmpp protocol between server and mobile)
Followed this code https://github.com/upnpforum/uca-android-controller/tree/master/controllerapp/src/com/comarch/android/upnp/ibcdemo
Upvotes: 0
Reputation: 43
You could setup a connection through sockets. This would require you to have a wifi dongle for your raspberry pi.
You could start with reading Android sockets and basically any tutorial you can google (Example)
Upvotes: 2