Skip to content

Commit

Permalink
Fix google services disabler
Browse files Browse the repository at this point in the history
  • Loading branch information
prof18 committed Sep 12, 2024
1 parent a64668c commit 3e19997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,5 @@ fun getVersionName(): String =
android.applicationVariants.configureEach {
val name = name.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() }
val googleTask = tasks.findByName("process${name}GoogleServices")
googleTask?.enabled = !name.contains("fdroid")
googleTask?.enabled = !name.contains("Fdroid")
}

0 comments on commit 3e19997

Please sign in to comment.