From 26fbfc08f71a99f71c3341c062444c4cb8495856 Mon Sep 17 00:00:00 2001 From: darken Date: Fri, 5 Apr 2024 18:26:13 +0200 Subject: [PATCH] Remove proprietary Google Play info block in FOSS builds --- app/build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0a06873c..f89c936e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -38,6 +38,11 @@ android { create("foss") { dimension = "version" signingConfig = signingConfigs["releaseFoss"] + // The info block is encrypted and can only be read by google + dependenciesInfo { + includeInApk = false + includeInBundle = false + } } create("gplay") { dimension = "version"