We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7593560 commit 0b4104fCopy full SHA for 0b4104f
core/analytics/build.gradle.kts
@@ -43,6 +43,17 @@ dependencies {
43
googleImplementation(libs.bundles.datadog)
44
}
45
46
+val googleServiceKeywords = listOf("crashlytics", "google", "datadog")
47
+
48
+tasks.configureEach {
49
+ if (
50
+ googleServiceKeywords.any { name.contains(it, ignoreCase = true) } && name.contains("fdroid", ignoreCase = true)
51
+ ) {
52
+ project.logger.lifecycle("Disabling task for F-Droid: $name")
53
+ enabled = false
54
+ }
55
+}
56
57
android {
58
buildFeatures { buildConfig = true }
59
namespace = "org.meshtastic.core.analytics"
0 commit comments