Skip to content

Commit c68b16c

Browse files
committed
exclude android sources from javadoc
1 parent f9e3771 commit c68b16c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The `FirebasePlatform` interface also includes a `getDatabasePath` method for yo
6767
open fun getDatabasePath(name: String): File = File("${System.getProperty("java.io.tmpdir")}${File.separatorChar}$name")
6868
```
6969

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

7272
#### Initialize the Firebase application
7373

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ tasks {
7373
withType<Sign>().configureEach {
7474
onlyIf { !project.gradle.startParameter.taskNames.any { "MavenLocal" in it } }
7575
}
76-
76+
javadoc {
77+
exclude("android/**", "libcore/util/**")
78+
}
7779
}
7880

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

0 commit comments

Comments
 (0)