Hide Transfer Data feature behind feature flag

This commit is contained in:
Torsten Grote
2021-06-17 12:11:42 -03:00
parent 0f9afda329
commit 5beffb21f1
5 changed files with 14 additions and 1 deletions

View File

@@ -29,6 +29,11 @@ public class TestFeatureFlagModule {
public boolean shouldEnableConnectViaBluetooth() {
return true;
}
@Override
public boolean shouldEnableTransferData() {
return true;
}
};
}
}