Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adding Parse javadoc to Android Studio

Parse provides docs as external Parse-1.5.1-javadoc folder.

I would like to have Parse javadoc connected within Android Studio. How do I achieve that?

I'm using AndroidStudio 0.6 and parse 1.5.1.

Same problem: Android Studio: How to attach javadoc

Android issue tracker: https://code.google.com/p/android/issues/detail?id=59220

like image 203
AndroidGecko Avatar asked Jun 11 '14 18:06

AndroidGecko


1 Answers

Here is the only solution I've found so far:

Open /YourProjectDir/.idea/libraries/Parse_versionCode.xml"

Add the following lines:

<JAVADOC>
  <root url="https://www.parse.com/docs/android/api/" />
</JAVADOC>

So it should look something like this:

<component name="libraryTable">
  <library name="Parse-1.8.3">
    <CLASSES>
      <root url="jar://$PROJECT_DIR$/app/libs/Parse-1.8.3.jar!/" /> <!-- check version! -->
    </CLASSES>
    <JAVADOC>
      <root url="https://www.parse.com/docs/android/api/" />
    </JAVADOC>
    <SOURCES />
  </library>
</component>
like image 117
Nima G Avatar answered Sep 28 '22 06:09

Nima G