From c978a4414d96d0e2542decc4ccc46273c7022b3d Mon Sep 17 00:00:00 2001 From: OneWay Date: Tue, 7 Jul 2026 06:23:05 +0000 Subject: [PATCH] Disable fetchRemoteLicense for reproducible builds AboutLibraries fetched license text over the network at build time, which is unavailable on F-Droid's isolated buildserver and produced different license identifiers (SPDX id vs. hash fallback) between environments, breaking APK reproducibility. --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 71cde8b..dad13ad 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -153,7 +153,7 @@ android { aboutLibraries { collect { - fetchRemoteLicense = true + fetchRemoteLicense = false fetchRemoteFunding = false configPath = file("config") }