We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa38c17 commit 5148d49Copy full SHA for 5148d49
integration/kotlinx-coroutines-play-services/build.gradle
@@ -38,6 +38,10 @@ dependencies {
38
tasks.withType(dokka.getClass()) {
39
externalDocumentationLink {
40
url = new URL("https://developers.google.com/android/reference/")
41
+ /*
42
+ * This is workaround for missing package list in Google API
43
+ */
44
+ packageListUrl = rootDir.toPath().resolve("integration/kotlinx-coroutines-play-services/resources/package.list").toUri().toURL()
45
}
46
47
integration/kotlinx-coroutines-play-services/resources/package.list
@@ -0,0 +1 @@
1
+com.google.android.gms.tasks
0 commit comments