Hide Transfer Data feature behind feature flag

This commit is contained in:
Torsten Grote
2021-06-17 12:11:42 -03:00
parent ab2fe58d2f
commit f457a5e831
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;
}
};
}
}