gwt mobile 1.1 and cordova -1.7.0
our app works fine on android. We are trying to port to Windows phone . We wrote a simple gwt app without any phonegap code and that works on the windows phone emulator. Now we changed the code to use phonegap - Event.onDeviceReady() and nothing shows up. Here is the code
public void onModuleLoad() {
Event.onDeviceReady(new Callback() {
@Override
public void onEventFired() {
final Button sendButton = new Button("Send");
final TextBox nameField = new TextBox();
nameField.setText("GWT User");
RootPanel.get().clear();
HorizontalPanel hp = new HorizontalPanel();
hp.add(nameField);
hp.add(sendButton);
RootPanel.get().add(hp);
}
});
}
Any help appreciated.