Skip to content

Commit

Permalink
exclude android sources from javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nbransby committed Mar 31, 2024
1 parent f9e3771 commit c68b16c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The `FirebasePlatform` interface also includes a `getDatabasePath` method for yo
open fun getDatabasePath(name: String): File = File("${System.getProperty("java.io.tmpdir")}${File.separatorChar}$name")
```

This is used by Firestore to support [offline data persistence](https://firebase.google.com/docs/firestore/manage-data/enable-offline).
This is used by Firestore to support [offline data persistence](https://firebase.google.com/docs/firestore/manage-data/enable-offline).

#### Initialize the Firebase application

Expand Down
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ tasks {
withType<Sign>().configureEach {
onlyIf { !project.gradle.startParameter.taskNames.any { "MavenLocal" in it } }
}

javadoc {
exclude("android/**", "libcore/util/**")
}
}

val jar by tasks.getting(Jar::class) {
Expand Down

0 comments on commit c68b16c

Please sign in to comment.