We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Steps to use:
No need to change your "html" files for importing "Google Analytics JS" This project uses "GATracker" Ref: https://code.google.com/p/gwt-gatracker/
Add in your project's gwt.xml
To start using first you need to initialize the GWT-Google-Analytics plugin:
GAnalytics.initialize("UA-XXXXXXXX-X", new Callback<Void, Exception>() { @Override public void onSuccess(Void arg0) { GWT.log("Success!"); GATracker.trackEvent("Main", "Loading Modules"); } @Override public void onFailure(Exception arg0) { GWT.log("Failure!"); }
});