public class GwtGearsTest implements EntryPoint {
public void onModuleLoad() {
try {
final LocalServer localServer = new LocalServer();
} catch (GearsException e) {
e.printStackTrace();
}
}
}
Eclipse says everything's fine, but when I try to launch my
application, the GWT Development shell tells me that the imports (from
gwt-google-apis) cannot be resolved, has anyone had this issue? And
how do you resolve it? At first I thought it was because I was trying
this on a Mac ("GWT's hosted browser only supports Gears on the
Windows platform"), but then I rebooted into windows to find the same
problem.
Any help would be really appreciated. Thanks alot.
<inherits name='com.google.gwt.gears.Gears'/>
Otherwise, the GWT compiler won't know where the Gears stuff is and
would probably not be able to resolve your imports. HTH!
-krispy
Thanks krispy.