From 24bd62c22a59888591951df4ef1409acc2599710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 20 Dec 2018 10:33:10 +0100 Subject: [PATCH] ios: disable recording Apple rejected our app on account of requiring Dropbox not being acceptable. Oh well! Disable it until we find a way around it. Sigh. --- .../features/toolbox/components/native/OverflowMenu.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/react/features/toolbox/components/native/OverflowMenu.js b/react/features/toolbox/components/native/OverflowMenu.js index 9a8e63692..d0db50949 100644 --- a/react/features/toolbox/components/native/OverflowMenu.js +++ b/react/features/toolbox/components/native/OverflowMenu.js @@ -1,6 +1,7 @@ // @flow import React, { Component } from 'react'; +import { Platform } from 'react-native'; import { connect } from 'react-redux'; import { BottomSheet, hideDialog } from '../../../base/dialog'; @@ -72,7 +73,14 @@ 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' + && + }