Reputation: 1606
Friends, I do not succeed to create Javadocs for my Android project.
What I do:
the error that it shows after hiting the "Finish button" :
Could not launch Javadoc command Reason: cannot run program: C:\Android\android-sdk\platforms\android-10\android.jar Create process error=193, %1 is not a valid WIN-32 function
Would be glad about any support.
Upvotes: 2
Views: 2782
Reputation: 1143
You're setting the android.jar as the command to run, which doesn't work and causes the error you've described. "Javadoc command" expects a path to the javadoc binary, for example
C:\Program Files\Java\jdk1.6.0_21\bin\javadoc.exe
With that, it should do what you expect ;)
Upvotes: 3