Reputation: 11
I am new to this environment and trying to explore while doing this task.
Description: The client application should display a textbox of any kind, and a submit button of any kind.
Assumptions: The server should be written in Google Application Framework and deployed online in a Google Application Framework account.
Upvotes: 1
Views: 750
Reputation: 80340
All in all, this is not an easy task.
First read tutorials on all your basic technologies: AppEngine and Android. There are plenty around. You should know how to make a text box on Android and handle click events.
Then to post some data to AppEngine from Android you'll need:
The hardest part - user authentication. Three options:
REST service on AppEngine. Use Resteasy. And GSON for JSON conversion.
Upvotes: 1