Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of a way to transfer files between an app running on a desktop and and app running on an Android device?

Would this have to be some sort of client server arch? Should i use 'adb push / pull' like commands from the desktop app with predifined file paths on the sd card (which the app saves its data too?)

Thanks,

share|improve this question
2  
I suggest you not to use ADB, as you (or specially your customers) will need to enable usb debugging and will probably need a special usb driver. You could try to run an app on the computer that opens a port and receives / sends data to a mobile via http or a custom protocol. – Augusto Jul 12 '11 at 14:44
thanks for the reply - would this be relativly trivial using java (on the desktop)? I guess one would have to configure any firewall running on the comp to allow communication over that port? – Dori Jul 12 '11 at 15:24
1  
Don't make users forward ports. Use a web server. – Tom Dignan Jul 15 '11 at 4:03

1 Answer

up vote 1 down vote accepted

You could just use Dropbox, or a similar service. If you want your own solution you can use, for example, sftp. If the phone can be connected to the same wireless net as the desktop computer you don't even have to worry about ports/NAT issues.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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