1import Constants from 'expo-constants'; 2import { Platform } from 'react-native'; 3 4import Environment from './utils/Environment'; 5 6export default { 7 HIDE_EXPLORE_TABS: Platform.OS === 'android', 8 DISPLAY_EXPERIMENTAL_EXPLORE_TABS: false, 9 INFINITE_SCROLL_EXPLORE_TABS: false, 10 // Disable all project tools in the App Store client. 11 ENABLE_PROJECT_TOOLS: !Environment.IsIOSRestrictedBuild, 12 ENABLE_QR_CODE_BUTTON: Constants.isDevice && !Environment.IsIOSRestrictedBuild, 13 // Disable the clipboard button in the App Store client. 14 ENABLE_CLIPBOARD_BUTTON: !Environment.IsIOSRestrictedBuild, 15}; 16