JavaDoc from external library (.AAR)

I am using Android Studio 0.8.13 for Windows 7.

I created an external library form project (.AAR) that I want to reuse. All classes and methods are written with javadoc description.

The problem is when I migrate this external library with another project, I can use the library objects, but it does not display the javadoc of the external library (when pressing CTRL + Q).

I have searched any place on the net to figure this out, no result, so any help would be appreciated.

Regards,

Moshik.

+3


source to share


1 answer


This code has worked in the past:

/* ask gradle for source code and javadocs downloads */
idea {
  module {
    downloadSources = true
    downloadJavadoc = true
  }
}

      



add this at the same level as the declared android{...}

section

0


source







All Articles