gradle: disable baseline profile (#260)

Needed as a workaround for reproducible builds
by F-Droid until the baseline.prof is reproducible.
This commit is contained in:
Moritz Warning
2025-08-16 15:32:05 +02:00
committed by GitHub
parent 72af724588
commit b86f2cdb11
+6
View File
@@ -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
}
}