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
committed by Torsten Grote
parent f9749fda80
commit 344fff4a7a
6 changed files with 24 additions and 0 deletions

View File

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