|
@@ -20,6 +20,8 @@ import { TileViewButton } from '../../../video-layout';
|
20
|
20
|
import AudioOnlyButton from './AudioOnlyButton';
|
21
|
21
|
import ToggleCameraButton from './ToggleCameraButton';
|
22
|
22
|
|
|
23
|
+declare var __DEV__;
|
|
24
|
+
|
23
|
25
|
/**
|
24
|
26
|
* The type of the React {@code Component} props of {@link OverflowMenu}.
|
25
|
27
|
*/
|
|
@@ -82,7 +84,7 @@ class OverflowMenu extends Component<Props> {
|
82
|
84
|
// Apple rejected our app because they claim requiring a
|
83
|
85
|
// Dropbox account for recording is not acceptable.
|
84
|
86
|
// Ddisable it until we can find a way around it.
|
85
|
|
- Platform.OS !== 'ios'
|
|
87
|
+ (__DEV__ || Platform.OS !== 'ios')
|
86
|
88
|
&& <RecordButton { ...buttonProps } />
|
87
|
89
|
}
|
88
|
90
|
<LiveStreamButton { ...buttonProps } />
|