1

When I run my project I get the following error: Could not find or load main class com.google.gwt.dev.GWTShell

I have already installed the google plugin with the sdk's and GWT designer. I am not understanding due to what this error is occuring?

apurva patil
  • 25
  • 1
  • 9

1 Answers1

1

com.google.gwt.dev.GWTShell is deprecated and no longer used in later versions of GWT.

com.google.gwt.dev.DevMode is the one to be used for launch GWT Dev Mode.

References -

  1. Simple Compiling and Debuggig - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging

  2. Advanced SuperDevMode - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging#SuperDevMode

appbootup
  • 9,537
  • 3
  • 33
  • 65