0
votes

I am not sure why I get this error:

Caused by: java.lang.RuntimeException: Deferred binding failed for 'com.mygwt.client.core.FrameView$Binder' (did you forget to inherit a required module?)

Although the View and Presenter java files have the same code pattern as with the working Views and Presenter I have in my code.

1
What could be causing this? Here is the complete error log: pastebin.com/SwzRYX9v - quarks

1 Answers

1
votes

Your client code is using external JARs and they require to be inherited in the main module for GWT

You need to add entry for this API in your gwt.xml

<inherits name='com.mygwt.client.core' />