Skip to content Skip to sidebar Skip to footer

Javadoc Fails With Class File For Java.lang.FunctionalInterface Not Found

Using Android Studio, I am trying to generate the Javadoc. Under Eclipse it worked fine, but under Android Studio I get the error: javadoc: error - com.sun.tools.doclets.internal.

Solution 1:

Yes. This fails on JDK 1.8. I discovered the change to -bootclasspath was causing the problem. The following -bootclasspath is required:

"$(JAVA_HOME)/jre/lib/rt.jar";$(HOME)\AppData\Local\Android\sdk\platforms\android-19\android.jar 

Post a Comment for "Javadoc Fails With Class File For Java.lang.FunctionalInterface Not Found"