I've been trying to connect my Android app to the AppEnging, following this page https://code.google.com/p/gwt-syncproxy/.
According to that page, I should :
CookieManager userSession = LoginUtils.loginAppEngine("https://example.appspot.com",
"http://example.appspot.com/helloApp/greet",
"emailaddress@gmail.com", "password");
When I call LoginUtils.loginAppEngine it suggest me a different method, loginAppEngine(Activiyy parent,CookieManagerAvailableListener listener,Account account).
that I can't find in the project sources.
Any possible solution?