Android studio, project library, setting javadoc url

Android Studio supports writing pure java modules as a library. Such a library uses the jdk platform. However, the javadoc address for a quick look at the documentation (with Ctrl + Q ) is incorrect. Im my case for the code snippet that it points out in the document for ConcurrentLinkedQueue.take ()

  Following external urls were checked:    
 http://docs.oracle.com/javafx/2/api/java/util/concurrent/LinkedBlockingQueue.html#take ()    
 http://docs.oracle.com/javafx/2/api/java/util/concurrent/LinkedBlockingQueue.html#take
 - The documentation for this element is not found. 
 Please add all the needed paths to API docs in Project Settings.

Where does the IDE get the javafx url? How to change this URL to a reasonable default value (I did not find anything in the project settings)?

+5
source share

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


All Articles