Saurabh Chaturvedi
Saurabh Chaturvedi

Reputation: 2166

Converting a GWT web app on app engine to android app

I have a GWT App deployed on Google App Engine that makes use of RPC Calls to function.It uses Bigquery Cloud as a backend for database operations.How can i create an android app from existing google app or do i have to code again to build a native android app for this application.

Upvotes: 0

Views: 479

Answers (2)

Andrei Volgin
Andrei Volgin

Reputation: 41089

You can use a combination of mgwt and GWT-Phonegap to create apps for Android and iOS.

Upvotes: 1

ndaussy
ndaussy

Reputation: 7

if RPC is your problem, you can use GWT-P REST to change your RPC in REST-FULL service. You need to refactoring your GWT client code and Server code. I had ever use in project GWT-P rest with an SPRING-REST on server side, that's work well. This can solve the problem's of RPC and serialization policy from GWT.

If you want to use the client code from gwt and use this in android Application, your only choice is to use phonegap and MGWT to create responsive design, but you must separate you server code and client code in three differents module with maven (client - server - DTO).

In first if i was at your place, i will transform my RPC service in REST-FULL service. After if your application is only to android and not too complexe, i advise to create an Native App android. MGWT + PHONEGAP + GWTP is more to create mobile cross-platform application.

Upvotes: 0

Related Questions