We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096d8ea commit 42ef491Copy full SHA for 42ef491
android-pdf-viewer/build.gradle
@@ -78,4 +78,14 @@ afterEvaluate {
78
}
79
80
81
+}
82
+
83
+afterEvaluate {
84
+ def explodeTasks = tasks.matching { it.name.toLowerCase().startsWith("explode") }
85
86
+ tasks.matching { it.name.startsWith("extractDeepLinks") }.configureEach { extractTask ->
87
+ explodeTasks.configureEach { explodeTask ->
88
+ extractTask.dependsOn(explodeTask)
89
+ }
90
91
0 commit comments