refactor: Comment out debug applicationId overrides (#3601)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-11-03 15:41:46 -06:00 committed by GitHub
parent acdd67cb79
commit b5f8c0420a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -173,15 +173,16 @@ secrets {
// workaround for https://github.com/google/ksp/issues/1590
androidComponents {
onVariants(selector().all()) { variant ->
if (variant.name == "fdroidDebug") {
variant.applicationId = "com.geeksville.mesh.fdroid.debug"
}
if (variant.name == "googleDebug") {
variant.applicationId = "com.geeksville.mesh.google.debug"
}
}
/** Disabling until this works w/ bluetooth */
// onVariants(selector().all()) { variant ->
// if (variant.name == "fdroidDebug") {
// variant.applicationId = "com.geeksville.mesh.fdroid.debug"
// }
//
// if (variant.name == "googleDebug") {
// variant.applicationId = "com.geeksville.mesh.google.debug"
// }
// }
onVariants(selector().withBuildType("release")) { variant ->
if (variant.flavorName == "google") {
val variantNameCapped = variant.name.replaceFirstChar { it.uppercase() }