I ran into google app engine as it seems a simple server solution for beginners and found this link to help me start: https://github.com/GoogleCloudPlatform/gradle-appengine-templates/tree/master/HelloEndpoints.
I did the tutorial and it went well but I find it strange and maybe I don't understand how to use it but for my understanding for each Api Method in my endpoint I need a different AsyncTask, and that makes the client coding much more complicated. So there is another, better way to use this?
And what is the most common approach to build a client-server Android application, I mean how to build the client class to handle the interaction with my services? should I use simple HTTPRequest or something else? I would really like to have a nice client service handler example.