Well I believe you don't - when executed, a GWT web app is a HTML/CSS/ JavaScript based web app just like any other that you load into the browser. It really makes no difference whether you develop in GWT or native JS, because all you load into the web browser is your code cross-compiled to JS. It's deceiving because the GWT cross compilation and debugging in Eclipse works so well. You're best shot (that I can see, someone correct me) is communicating through the web server that hosts your GWT web app. The GWT web app connects through JSON or RPC, drops the data off on that server and the Android app pulls that data through JSON. And vice versa. Looks JSON would be a nice way to go because you can reuse encoding/decoding of calls to the web server server. Something you could check that I have no idea if it could work is using Gears to exchange data on the handset.
On Mar 3, 1:57 pm, ANDREA P <[email protected]> wrote: > How Do I do ??? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

