You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.6 KiB

import './environment/validate.fx';
// load remote logging for compatibility with custom development clients
import './environment/logging.fx';
// load expo-asset immediately to set a custom `source` transformer in React Native
import 'expo-asset';
import Constants, { ExecutionEnvironment } from 'expo-constants';
import * as Font from 'expo-font';
import { NativeModulesProxy, Platform } from 'expo-modules-core';
import { StyleSheet } from 'react-native';
import { createErrorHandler } from './errors/ExpoErrorManager';
// If expo-font is installed and the style preprocessor is available, use it to parse fonts.
if (StyleSheet.setStyleAttributePreprocessor) {
StyleSheet.setStyleAttributePreprocessor('fontFamily', Font.processFontFamily);
}
// Asserts if bare workflow isn't setup correctly.
if (NativeModulesProxy.ExpoUpdates?.isMissingRuntimeVersion) {
const message = 'expo-updates is installed but there is no runtime or SDK version configured. ' +
"You'll need to configure one of these two properties in " +
Platform.select({ ios: 'Expo.plist', android: 'AndroidManifest.xml' }) +
' before OTA updates will work properly.';
if (__DEV__) {
console.warn(message);
}
else {
throw new Error(message);
}
}
if (Constants.executionEnvironment === ExecutionEnvironment.StoreClient) {
// set up some improvements to commonly logged error messages stemming from react-native
const globalHandler = ErrorUtils.getGlobalHandler();
ErrorUtils.setGlobalHandler(createErrorHandler(globalHandler));
}
//# sourceMappingURL=Expo.fx.js.map