Hello there,

I recently deployed inadvertently a debug version of our game typrX
(typing races at www.typrx.com - try it it's fun).

It was quickly corrected but I know it may happen again. After digging
on Google I found some info how to create 2 different profiles, one
for development mode that has the debug functions and one used for
deployment. Here is what I found from a Google IO presentation. Does
anyone have this setup? Can someone explains how to run this?

MyAppCommon.gwt.xml
<module>
  ...
  <define-property values="debug, release" name="app.config" />
  <replace-with class="myapp.debug.DebugConsole">
    <when-type-is class="myapp.Console" />
    <when-property-is name="app.config" value="debug" />
  </replace-with>
  ...
</module>
MyAppDebug.gwt.xml
<module>
  ...
  <set-property name="app.config" value="debug" />
</module>

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.


Reply via email to