5

Could someone please provide me with a link to a tutorial that shows and explains how to send data from an android emulator to a Google app engine. I have googled it myself but am not having any luck finding any good ones. I am a beginner so any help would be much appreciated.

Thanks.

lan
  • 83
  • 4
  • 1
    beginner in android or appengine or both or client/server? how beginner is your beginner-ness? If you are totally beginner, I would advice you to start with android stand alone first. – Win Myo Htet Apr 05 '12 at 20:38

1 Answers1

10

The standard way would be to create a REST service on GAE and then call it from Android.

Server side: there are several REST libraries, my personal choice is Resteasy.

Android side: there are numerous examples how to consume REST services. You might also want to look at Android client from Spring.

For a complete example you might want to look at the source of LeanEngine.

Community
  • 1
  • 1
Peter Knego
  • 79,991
  • 11
  • 123
  • 154