Use a feature flag to hide connect via Bluetooth option

This commit is contained in:
Torsten Grote
2021-04-19 11:36:35 -03:00
parent c736bf7c06
commit 688bac77a8
6 changed files with 17 additions and 0 deletions

View File

@@ -38,6 +38,11 @@ public class BrambleCoreIntegrationTestModule {
public boolean shouldEnableDisappearingMessages() {
return true;
}
@Override
public boolean shouldEnableConnectViewBluetooth() {
return true;
}
};
}
}