From 4625cb6880313b60f0713556a2d98f26b6f94cc8 Mon Sep 17 00:00:00 2001 From: Jonathan Almeida Date: Thu, 25 Sep 2025 18:33:01 -0400 Subject: [PATCH] Fix geckoview substitution failures Currently, this requires that the developer manually publish geckoview (and exoplayer2) first which is the whole point of what this feature was supposed to help us do. ```bash # From your mozilla-central checkout ./mach gradle geckoview:publishDebugPublicationToMavenLocal exoplayer2:publishDebugPublicationToMavenLocal ``` --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index f9df27eb3..0e08dfc90 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -414,7 +414,7 @@ if (gradle.hasProperty('localProperties.dependencySubstitutions.geckoviewTopsrcd if (gradle.hasProperty('localProperties.autoPublish.android-components.dir')) { ext.acSrcDir = gradle."localProperties.autoPublish.android-components.dir" - apply from: "../${acSrcDir}/substitute-local-ac.gradle" + apply from: "${acSrcDir}/substitute-local-ac.gradle" } if (gradle.hasProperty('localProperties.autoPublish.application-services.dir')) {