My application is throwing:
java.lang.RuntimeException: Deferred binding failed for \'com.mygwtapp.client.gin.ClientAppGinjector\' (did you forget to inheri
I had the same problem. My getter method of Boolean object called getBooleanObject() instead of isBooleanObject(). Class JsonEncoderDecoder looked for method called isBooleanObject(), didn't find him, compilation failed. (gwt 2.8.0)
getBooleanObject()
isBooleanObject()
JsonEncoderDecoder