views:

289

answers:

2

I need to establish communication between two android phones (same application, if maters).

Is there any possibility for android application establish an data stream via bluetooth (so there is no need for internet connection)?

Or (UDP)TCP/IP over internet is currently best solution?

A: 

In android 1.5, i believe, there's no file transfer via bluetooth. In order to be version agnostic, bump transfers all the data via their servers i believe.

Drakosha
I'm not talking about file transfer, but connecting applications on two android phones with each other (e.g. game multiplayer mode on two physically close phones, synchronization between same application on two phones...).
Jox
+2  A: 

Since Android 2.0 it should be possible to use the bluetooth API (see here).

r1k0
Thanks.... Kind of strange I haven't seen that topic o_O, is it new?
Jox
Yes, it seems so and you're welcome.
r1k0