Add feature flag for sharing the app via offline hotspot

This commit is contained in:
Sebastian Kürten
2021-05-28 13:52:24 +02:00
parent f1c71ec5a7
commit 5ac636d52d
7 changed files with 25 additions and 0 deletions

View File

@@ -43,6 +43,11 @@ public class BrambleCoreIntegrationTestModule {
public boolean shouldEnableConnectViaBluetooth() {
return true;
}
@Override
public boolean shouldEnableShareAppViaOfflineHotspot() {
return true;
}
};
}
}