Skip to content

Instantly share code, notes, and snippets.

@ipereziriarte
Created September 8, 2015 10:36
Show Gist options
  • Save ipereziriarte/79012beb0d94750cb997 to your computer and use it in GitHub Desktop.
Save ipereziriarte/79012beb0d94750cb997 to your computer and use it in GitHub Desktop.
How to add parse javadoc to android studio
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment