On Sat, Aug 27, 2011 at 3:06 AM, MK Z <[email protected]> wrote:
> > My thought is to create GWT and when user for example click a button, > this will invoke post/get action that will add/update/remove entity in > the datastore.. but how? > Do you need a native Android app or just a web app that is optimized for mobile devices? If you need a Web app, you will just have to optimize your current GWT UI to play nice with the Android browser. If you need a native app, you would use HttpClient to GET/POST/PUT data to a servlet. Eclipse can automatically create an 'Android-connected' GAE project ([1]). You might want to play with this to get a feel about how it works. It won't integrate with your existing project though, it's just for new projects. You have to think about how complex your data is and what kind of operations you need to do on it. If its very simple, a simple servlet that allows you to POST a JSON (or XML) from Android, and saves the result to the datastore will do. If it is more complex, you may need to integrate some sort of a REST-ful framework on the server side. http://code.google.com/eclipse/docs/appengine_connected_android.html -- 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

