diff --git a/react/features/toolbox/components/native/OverflowMenu.js b/react/features/toolbox/components/native/OverflowMenu.js index 427e1de27..c7c9a686e 100644 --- a/react/features/toolbox/components/native/OverflowMenu.js +++ b/react/features/toolbox/components/native/OverflowMenu.js @@ -20,6 +20,8 @@ import { TileViewButton } from '../../../video-layout'; import AudioOnlyButton from './AudioOnlyButton'; import ToggleCameraButton from './ToggleCameraButton'; +declare var __DEV__; + /** * The type of the React {@code Component} props of {@link OverflowMenu}. */ @@ -82,7 +84,7 @@ class OverflowMenu extends Component { // Apple rejected our app because they claim requiring a // Dropbox account for recording is not acceptable. // Ddisable it until we can find a way around it. - Platform.OS !== 'ios' + (__DEV__ || Platform.OS !== 'ios') && }