From 4d82c297432e0f86d54e2d3496e0654bbb36a447 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Mon, 10 Jun 2019 14:53:56 -0700 Subject: [PATCH] Don't substitute application-services packages which are not part of the megazord --- app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 956dc7db3..35bf7001b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -455,7 +455,8 @@ afterEvaluate { } } // Check whether it was already megazorded. - if (! dependency.requested.name.endsWith("-withoutLib")) { + // Hack: sync15 is pure kotlin, and thus not part of the megazord. + if (! dependency.requested.name.endsWith("-withoutLib") && dependency.requested.name != "sync15") { // Use either the -forUnitTests megazord, or the default one. def substitution if (dependency.requested.name.endsWith("-forUnitTests")) {