diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a89b6c4be..ff3d42b99 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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() }