Add feature flag for sharing the app via offline hotspot

This commit is contained in:
Sebastian Kürten
2021-07-14 14:03:13 +02:00
committed by Torsten Grote
parent f9749fda80
commit 344fff4a7a
6 changed files with 24 additions and 0 deletions
@@ -34,6 +34,11 @@ public class TestFeatureFlagModule {
public boolean shouldEnableTransferData() {
return true;
}
@Override
public boolean shouldEnableShareAppViaOfflineHotspot() {
return true;
}
};
}
}