Bradleycorn
02/07/2022, 9:06 PMtasks.dokkaGfm {
moduleName.set("app")
outputDirectory.set(projectDir.resolve("../docs"))
suppressObviousFunctions.set(true)
dokkaSourceSets {
configureEach {
displayName.set("app")
sourceLink {
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
localDirectory.set(file("src/main/kotlin"))
// URL showing where the source code can be accessed through the web browser
remoteUrl.set(URL("<https://github.com/bradleycorn/resume-android/blob/master/app/src/main/kotlin>"))
// Suffix which is used to append the line number to the URL. Use #L for GitHub
remoteLineSuffix.set("#L")
}
}
}
}
PabloCasia
02/08/2022, 5:45 AMtasks.dokkaGfm {
moduleName.set("app")
outputDirectory.set(projectDir.resolve("../docs"))
suppressObviousFunctions.set(true)
dokkaSourceSets {
configureEach {
displayName.set("app")
sourceLink {
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
localDirectory.set(file("src/main"))
// URL showing where the source code can be accessed through the web browser
remoteUrl.set(URL("<https://github.com/bradleycorn/resume-android/blob/master/app/src/main>"))
// Suffix which is used to append the line number to the URL. Use #L for GitHub
remoteLineSuffix.set("#L")
}
}
}
}
Bradleycorn
02/12/2022, 2:20 PMVadim Mishenev
02/14/2022, 1:20 AMnew URL()
:
remoteUrl.set(new URL("<https://github.com/bradleycorn/resume-android/blob/master/app/src/main/kotlin>"))