Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set the Java Doc for google drive api for android in Eclipse

I am using the google drive api for android in eclipse, how do I link the documentation so that when I hover over something, I can view the java doc for it.

like image 515
Vnge Avatar asked Feb 12 '13 19:02

Vnge


People also ask

How do I add the Java API documentation to eclipse?

Step 1 − Open eclipse, select the option Project →Generate Javadoc. Step 2 − Select the javadoc.exe file from the bin folder of java installation directory, select the destination folder for the generated java doc and select Next. finish button.


1 Answers

Assuming you are using the Android Development Tools (ADT), see https://stackoverflow.com/a/11579339/1369991 on how to do it.

Note that the contents of the libs folder will be bundled with your application. So you really should put the source and Javadoc JARs in another folder or even keep them outside of your workspace. Everything described in that answer also works with external JARs -- on Windows you just have to use \\ or / instead of the usual \ as path separator.

like image 157
Andreas Mayer Avatar answered Sep 20 '22 15:09

Andreas Mayer