adding Parse javadoc to Android Studio

孤者浪人 提交于 2019-11-30 20:26:46

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>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!