Inspired by this answer, I'm using:
java -jar %BUILDTOOLSPATH%\jill.jar --output classes.jayce src
java -jar %BUILDTOOLSPATH%\jack.jar --import classes.jayce --output-dex .
to build an Android app, on Windows.
I get:
Failed to load file 'classes.jayce', entry '/dom\domain\main.jayce': Wrong type in 'file 'classes.jayce', entry '/dom\domain\main.jayce'', found 'Ldom/domain/main;' while expecting 'Ldom\domain\main;'
This seems to be a \
or /
Windows problem. How to solve this?
Note: Here is the full source code. My goal is to have a ready to use Android "Hello World" app, compilable from command-line without using an IDE (such as Android Studio) at all.