On Windows, paths are always displayed with backslashes.
C:\Program Files (x86)\Android\android-sdk
If I paste this into the global preferences in IntroJucer, then I get this in the ant build file:
sdk.dir=C:\Program\ Files\ (x86)\Android\android-sdk
Which will result in a build error with some very weird-looking path. Ant requires forward slashes as path separators:
sdk.dir=C:/Program\ Files\ (x86)/Android/android-sdk
So as a workaround I can replace all backslashes with forward slashes in the preferences window. Do you think IntroJucer could do that automatically somehow?
edit: Or should I just try to use Android Studio? In that case it tries to make a symlink, which on Windows doesn't work unless you have admin rights. As far as I can tell it is always the same symlink, maybe IntroJucer can skip creating the symlink if the correct symlink is already there?
--
Roeland