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!/" /> </CLASSES> <JAVADOC> <root url="https://www.parse.com/docs/android/api/" /> </JAVADOC> <SOURCES /> </library> </component>
source share