The forum is read-only. New threads, replies and edits are disabled.
Wade app on Tizen
Elliot

Hi

 

I'm trying to compile my wade game for Tizen, but it fails to compile wade_1.0.js, finding many errors (over 100). 

 

The game works perfectly in webkit-based browsers, so it should work. Maybe there's a compiler setting that I'm missing? 

 

Has anyone managed to compile a wade game for Tizen?

hermes

The Tizen compiler uses JSLint, which treats many things as "errors", even things that aren't errors at all (for example lines that are too long, comma expressions, etc.).

 

In your case, wade_1.0.js is a minified version of wade, and as such, it will have long lines, comma expressions and so on.

 

If you rename it to wade_1.0.min.js, then the Tizen compiler understands it's minified javascript, and stops complaining.