ThatCraws/MrX

JavaDoc does not get the androidx.appcompat.app-package

Opened this issue · 0 comments

The other android-files work by using the following javadoc-option:
"-classpath C:\android\SDK\platforms\android-29\android.jar"
But calling
javadoc -public -author -d .\Doc -classpath C:\android\SDK\platforms\android-29\android.jar --source-path .\app\src\main\java -subpackages com.craws results in .\app\src\main\java\com\craws\mrx\GameActivity.java:3: error: package androidx.appcompat.app does not exist. import androidx.appcompat.app.AppCompatActivity;

And it really does not exist in the android.jar and not in the source-code for android-29, but in the source-code for android-28, but not in the android.jar of android-28. So changing -classpath to reference the android-28 android.jar is not working either.

So the GameActivity.java and MainActivity.java are not JavaDoc'able right now and I have to manually add the surrounding packages instead of just being able to do that aforementioned call to always just get all my files doc'd