Adding Parse javadoc to Android Studio

Parse provides documents as an external folder of Parse-1.5.1-javadoc .

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

I am using AndroidStudio 0.6 and parse 1.5.1.

Same problem: Android Studio: how to connect javadoc

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

+6
source share
1 answer

Here is the only solution I have 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> 

Therefore, 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> 
+8
source

Source: https://habr.com/ru/post/970710/


All Articles