1

I want my application to have self-replication capability via Bluetooth.means can send itself. its done on j2me with Matryoshka technique and Broken Matryoshka technique ( Optimized ).

how can do it on android?

CooL i3oY
  • 790
  • 1
  • 9
  • 26

1 Answers1

0

You can't. There is currently no way to have an Android app transmit itself over Bluetooth. You can send URLs that point to the Play store listing, but you can't actually send the APK over.

Femi
  • 64,273
  • 8
  • 118
  • 148
  • and if i wanna do it my self,can u show me a way ? some document ? – CooL i3oY Sep 04 '12 at 07:54
  • 1
    Take a look at the Obex (object exchange) code documented at http://stackoverflow.com/questions/5577481/sending-a-file-using-bluetooth-obex-object-push-profile-opp . They are sending files but the URL sending behavior is very similar. – Femi Sep 04 '12 at 13:32