Thanks to this thread, I was able to get Javadoc links to work for my Android project within Eclipse on Windows. Specifically, \"{@link android.widget.Toast}\" is currently
Adding -classpath
parameter in the last screen of "Generate Javadoc..." wizard did not work for me: I got an error message saying that -classpath
parameter can only be specified once.
Not really a solution, but a workaround:
javadoc.xml
file in project directoryjavadoc.xml
file and edit classpath attribute. Specifically, add "/path/to/sdk/platforms/android-##/android.jar" there and any other jars that you get warning messages aboutant -buildfile javadoc.xml
. For convenience, I put this line in a javadoc.sh
shell script.