From b86f2cdb11d26d9337fac1d452f8eb66e2754506 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Sat, 16 Aug 2025 15:32:05 +0200 Subject: [PATCH] gradle: disable baseline profile (#260) Needed as a workaround for reproducible builds by F-Droid until the baseline.prof is reproducible. --- build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index daf86da9..44082684 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,3 +5,9 @@ plugins { alias(libs.plugins.android.library) apply false alias(libs.plugins.kotlin.compose) apply false } + +tasks.whenTaskAdded { + if (name.contains("ArtProfile")) { + enabled = false + } +}