如何在JavaDoc中链接com.android.Volley包

时间:2018-07-02 17:48:00

标签: java android android-volley javadoc

如何链接到Javadoc中的凌空软件包?

当前,我将这样处理:{@link com.android.volley.Network},但这会导致找不到引用错误。

我一直在寻找解决此问题的一般方法,但似乎没有一种方法可行。

相关的build.gradle:

dependencies {
    compile 'com.android.support:appcompat-v7:27.1.1'
    compile 'com.android.support:customtabs:27.1.1'
    compile 'com.android.support:support-v4:27.1.1'
    compile 'com.android.volley:volley:1.1.0'
    testCompile 'org.easymock:easymock:3.4'
    testCompile files("${buildDir}/libs/resources.jar")
    androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.5.4'
}

task javadoc(type: Javadoc) {
    source = android.sourceSets.main.java.srcDirs
    classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
    destinationDir = file("${buildDir}/reports/javadoc/")
    failOnError false
}
task sourcesJar(type: Jar) {
    classifier = 'sources'
    from android.sourceSets.main.java.srcDirs
}
task resourcesJar(type: Jar) {
    archiveName = 'resources.jar'
    from files("${buildDir}/intermediates/classes/androidTest/debug")
}

0 个答案:

没有答案