Hi
There seems to be a problem with some UTF-8 handling when compiling the runtime with GWT:
Compiling module com.bipbip.trainingquiz.GdxDefinition
Validating units:
[ERROR] Errors in 'file:/home/barkholt/Projects/trainingquiz/core/src/com/esotericsoftware/spine/SkeletonBinary.java'
[ERROR] Line 108: No source code is available for type java.nio.charset.Charset; did you forget to inherit a required module?
[ERROR] Line 123: The constructor String(byte[], int, int, Charset) is undefined
[ERROR] Aborting compile due to errors in some input files
:html:compileGwt FAILED
I am using the latest version of LibGDX, Spine and the Spine runtime.
The problem seems to be the missing ability to convert byte[] to String using a specific encoding. There is some discussion here, as well as a pure java UTF-8 byte[] to String decoder: http://stackoverflow.com/questions/4584998/how-to-convert-a-byte-array-to-a-string-and-string-to-a-byte-array-with-gwt
FYI, in my limited testing, the decoder I linked to works perfectly fine with GWT and the Spine runtime.