xref: /expo/home/FeatureFlags.ts (revision f92a63fc)
1import { isDevice } from 'expo-device';
2
3import Environment from './utils/Environment';
4
5export default {
6  // Disable all project tools in the App Store client.
7  ENABLE_PROJECT_TOOLS: !Environment.IsIOSRestrictedBuild,
8  ENABLE_QR_CODE_BUTTON: isDevice && !Environment.IsIOSRestrictedBuild,
9  // Disable the clipboard button in the App Store client.
10  ENABLE_CLIPBOARD_BUTTON: !Environment.IsIOSRestrictedBuild,
11};
12