When I clicked SDK Manager on Program Files or run it in cmd, nothing happened. I did:
I was getting the error "C:\Program is not recognized as an internal or external command" Followed by loads of "unable to copy file" Followed by something about Android_SWT not being able to be found.
The way I fixed the problem on my system (Windows 8, 64 bit, JDK 7) was:
ANDROID SDK DIRECTORY\tools\android.bat in your favorite text editorjava_exe= call lib\find_java.bat (it's split over 2 lines)java_exe="%JAVA_HOME%\java.exe"tools\android.batThe problem was that the the space in the path was not being handled correctly. By wrapping the path in quotation marks, the space is then correctly catered for.