Skip to content

Commit

Permalink
Fix docs build out of generate step
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Banes committed Sep 15, 2020
1 parent 2c4b088 commit 4b5e39b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,11 @@ subprojects {
url = new URL("https://developer.android.com/reference/kotlin/")
packageListUrl = new URL("https://developer.android.com/reference/kotlin/androidx/ui/package-list")
}
externalDocumentationLink {
url = new URL("https://coil-kt.github.io/coil/api/coil-base/")
packageListUrl = new URL("file://$rootDir/package-list-coil-base")
if (rootProject.file('package-list-coil-base').exists()) {
externalDocumentationLink {
url = new URL("https://coil-kt.github.io/coil/api/coil-base/")
packageListUrl = new URL("file://$rootDir/package-list-coil-base")
}
}
}
}
Expand Down

0 comments on commit 4b5e39b

Please sign in to comment.